home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / gnu-misc-src.lha / GNU / src / amiga / BuildManifests.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1994-11-19  |  328b  |  14 lines

  1. #! /bin/sh
  2. #
  3. # This shell script takes care of building manifest files for the
  4. # source trees located under this directory, assumed to be /gnu/src/amiga.
  5.  
  6. for i in *
  7. do
  8.     if test -d $i
  9.     then
  10.         echo "Building /gnu/manifests/$i-src"
  11.         find /gnu/src/amiga/$i -type f -print | sort | sed "s:^/gnu/::" >/gnu/manifests/$i-src
  12.     fi
  13. done
  14.