CCL Home Page
Up Directory CCL makezip
# Bash script to put together a zip file, with DOS-formatted text files

FILES="*.scm makezip propane README"
rm -rf tmp *~ *.zip *.tgz

tar cf - $FILES | gzip > ncad021.tgz

mkdir tmp
for i in `ls $FILES`; do
	if [ -f $i ]; then
		unix2dos < $i > tmp/$i
	fi
done

# zip ncad021.zip tmp/*
# rm -rf tmp
Modified: Thu Jan 23 17:00:00 1997 GMT
Page accessed 5526 times since Sat Apr 17 22:02:58 1999 GMT