1) look for => instead of ! "statically linked"
[platform/upstream/rpm.git] / autodeps / linux.req
1 #!/bin/bash
2
3 # note this works for both a.out and ELF executables
4
5 filelist=$(xargs file 2>/dev/null | grep "executable" | cut -d: -f1)
6
7 for f in $filelist; do
8     ldd $f | grep '=>' | awk '{ print $1 }'
9 done | sort -u | xargs -r -n 1 basename | sort -u