home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / misc / src / rpm / autodeps / solaris.req < prev   
Encoding:
Text File  |  1997-09-17  |  309 b   |  13 lines

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