Initial revision

CVS patchset: 1199
CVS date: 1996/11/25 16:02:48
This commit is contained in:
ewt 1996-11-25 16:02:48 +00:00
parent c43e1a299c
commit fea564a773
1 changed files with 12 additions and 0 deletions

12
autodeps/solaris.req Normal file
View File

@ -0,0 +1,12 @@
#!/bin/sh
# note this works for both a.out and ELF executables
ulimit -c 0
filelist=`xargs -r file | fgrep executable | cut -d: -f1 `
for f in $filelist; do
ldd $f | awk '/=>/ { print $1 }'
done | sort -u | xargs -r -n 1 basename | sort -u