home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / editors / pe14802.arj / PEPURGE.BAT < prev    next >
DOS Batch File  |  1992-03-10  |  395b  |  17 lines

  1. @echo off
  2. if "%1" == "/A" goto nodir
  3. if "%1" == "/a" goto nodir
  4. if not "%1" == "" goto error
  5. if "%peback%" == "" goto nodir
  6. wipe -v -b -x%peback%\*.$?0 %peback%\*.$*
  7. goto end
  8. :nodir
  9. wipe -v -r -b -x\*.$?0 \*.$*
  10. goto end
  11. :error
  12. echo Syntax is : PEPURGE [/A|/a]
  13. echo -----------
  14. echo             The /A option force a recursive delete of all PE
  15. echo             backup files.
  16. :end
  17.