home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / p / p078 / 6.img / PCBFIXUP.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-07-10  |  641 b   |  19 lines

  1. echo off
  2. echo                  !!!!!!!  WARNING  !!!!!!! 
  3. echo .
  4. echo This batch file will first remove all files that exist in the 
  5. echo parent of the current directory that also exist in the current 
  6. echo directory.  It will then update all files from the current
  7. echo directory to the parent directory.  The original files will 
  8. echo remain in the current directory.
  9. echo .
  10. echo Press CNTRL-C to abort or
  11. pause
  12. echo Removing files from original directory . . .
  13. FOR %%i IN (*.*) DO if EXIST ..\%%i del ..\%%i
  14. echo Fixing files . . .
  15. FOR %%i IN (*.*) DO pcbfix20 >NULL %%i ..\%%i
  16. del ..\pcbfixup.bat
  17. del ..\pcbfix20.exe
  18.  
  19.