aboutsummaryrefslogtreecommitdiff
path: root/dumprpath
diff options
context:
space:
mode:
Diffstat (limited to 'dumprpath')
-rwxr-xr-xdumprpath6
1 files changed, 6 insertions, 0 deletions
diff --git a/dumprpath b/dumprpath
new file mode 100755
index 0000000..cc07fd0
--- /dev/null
+++ b/dumprpath
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+for i in "$@"; do
+ echo -n "$i: "
+ objdump -x "$i" | grep RPATH
+done