13 lines
309 B
Bash
13 lines
309 B
Bash
#!/bin/sh
|
|
|
|
# note this works for both a.out and ELF executables
|
|
|
|
ulimit -c 0
|
|
|
|
filelist=`sed "s/['\"]/\\\&/g" | xargs -r file | fgrep executable | cut -d: -f1 `
|
|
|
|
for f in $filelist; do
|
|
ldd $f 2>/dev/null | awk '/\=\>/ { print $1 }'
|
|
done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | sort -u
|
|
|