about summary refs log tree commit diff
path: root/find-suid
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>1970-01-01 03:00:00 +0300
committerAzat Bahawi <azat@bahawi.net>2022-09-20 11:57:34 +0300
commitfcf8d0c0246b353f255eb5173cd8cd3748f8da3b (patch)
tree50717852ab2d895415a77b64462de4723322c404 /find-suid
chore: init HEAD master
Diffstat (limited to 'find-suid')
-rwxr-xr-xfind-suid8
1 files changed, 8 insertions, 0 deletions
diff --git a/find-suid b/find-suid
new file mode 100755
index 0000000..e8aa470
--- /dev/null
+++ b/find-suid
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+
+IFS=':' read -r -a paths <<<"${PATH}"
+
+for directory in "${paths[@]}"; do
+    [ -d "${directory}" ] &&
+        find "${directory}" -type f -perm /u+s,g+s -ls
+done

Consider giving Nix/NixOS a try! <3