"Fossies" - the Fresh Open Source Software Archive

Member "websec-1.9.0/rollback" (23 Apr 2003, 363 Bytes) of package /linux/www/old/websec-1.9.0.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 ################################################################
    2 # Rollback all files in archive/ directory by one day.
    3 ################################################################
    4  
    5 foreach oldfile (archive/*.old.html)
    6     set tmpfile = $oldfile:r
    7     set newfile = $tmpfile:r.html
    8     echo "Processing $oldfile => $newfile ..."
    9     cp $oldfile $newfile
   10 end