#!/bin/sh # # DoAll_Update # V1.0 PL 00 -- 23 Aug 1997 # # Quick and dirty kludge to update ALL index files on msdos/programming/ # This file is needed only about every two months or after major updates. # # DATE=`/bin/date` FTPDIR=/ftp-service/ftp/pub/msdos/programming cd $FTPDIR echo "" echo "Update All-DJGPP-Files indexes (txt,html)" /ftp-service/bin/alldjgpp /ftp-service/bin/index.pl -f 00allindex.txt -w 00allindex.html djgpp # echo "" # echo "Updating /src/txt/00index.txt" # /ftp-service/bin/textindex echo "" # echo "Updating LongIndex (txt,html) Files" # for i in `/bin/ls -1`; do # /ftp-service/bin/longindex.pl $i # done # Update Standard Index Files echo "" echo "Calling weekly update" /ftp-service/bin/doit # Finally, list all files INSIDE zip files on current area, # (for msdos/programming, about 16 minutes) and update 'ls-lR' # /ftp-service/bin/msdosls echo "" echo "Completed." echo ""