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 >
Wrap
Linux/UNIX/POSIX Shell Script
|
1994-11-19
|
328b
|
14 lines
#! /bin/sh
#
# This shell script takes care of building manifest files for the
# source trees located under this directory, assumed to be /gnu/src/amiga.
for i in *
do
if test -d $i
then
echo "Building /gnu/manifests/$i-src"
find /gnu/src/amiga/$i -type f -print | sort | sed "s:^/gnu/::" >/gnu/manifests/$i-src
fi
done