Introduce a scripts/ folder
[termux-packages] / scripts / check-pie.sh
diff --git a/scripts/check-pie.sh b/scripts/check-pie.sh
new file mode 100755 (executable)
index 0000000..5e015cc
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/sh
+# check-pie.sh - script to detect non-PIE binaries (which does not work on Android)
+
+cd /data/data/com.termux/files/usr/bin/
+for file in *; do
+       if readelf -h $file 2>/dev/null | grep -q 'Type:[[:space:]]*EXEC'; then
+               echo $file
+       fi
+done