(binary)
| 348 | |
| 349 | @exceptions_handler(Exception) |
| 350 | def print_rpath_command(binary): |
| 351 | |
| 352 | format_str = "{:<13} {:<30}" |
| 353 | format_hex = "{:<13} 0x{:<28x}" |
| 354 | format_dec = "{:<13} {:<30d}" |
| 355 | |
| 356 | print("== Rpath Command ==") |
| 357 | cmd = binary.rpath |
| 358 | print("Path: {}".format(cmd.path)) |
| 359 | |
| 360 | |
| 361 | print("") |
| 362 | |
| 363 | |
| 364 |