home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-385-Vol-1of3.iso
/
g
/
gs241j11.zip
/
LHAGS
< prev
next >
Wrap
Text File
|
1992-05-08
|
489b
|
25 lines
#!/bin/sh
if [ $# != 1 ]; then
echo "usage: lhags archive_file"
exit 1
fi
FILES=
for f in *
do
case $f in
# Files to be removed with `make clean'
*.o | *.obj | *.a | core | gmon.out | *.dev | gconfig.h | obj*.tr | lib*.tr | \
_temp_* | _temp_*.* | *.map | *.sym | ansi2knr | ansi2knr.exe | \
genarch | genarch.exe | uniq | uniq.exe | arch.h | gs | gs.exe)
;;
Makefile | *.orig | *.bak | *~ | \#*\# | *.part?? | *.tar | *.Z | *.lzh)
;;
* )
FILES="$FILES $f"
esac
done
lha at $1 $FILES