home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo !!!!!!! WARNING !!!!!!!
- echo .
- echo This batch file will first remove all files that exist in the
- echo parent of the current directory that also exist in the current
- echo directory. It will then update all files from the current
- echo directory to the parent directory. The original files will
- echo remain in the current directory.
- echo .
- echo Press CNTRL-C to abort or
- pause
- echo Removing files from original directory . . .
- FOR %%i IN (*.*) DO if EXIST ..\%%i del ..\%%i
- echo Fixing files . . .
- FOR %%i IN (*.*) DO pcbfix20 >NULL %%i ..\%%i
- del ..\pcbfixup.bat
- del ..\pcbfix20.exe
-