home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 197 / DOS5BAT.ZIP / OBLIVION.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-11-03  |  524 b   |  21 lines

  1. @ECHO OFF
  2. REM This is OBLIVION.BAT
  3. REM
  4. REM OBLIVION.BAT wipes out subdirectories without asking if you're sure to
  5. REM you want to. Use this vert carfully. Don't try it late at night or
  6. REM unless you have DOS 5.0, The Norton Utilities, or another UNERASE
  7. REM program handy.
  8. REM
  9. REM It wipes out entrie directories,
  10. REM no questions asked, Be careful!
  11. REM
  12. IF %1!==! GOTO OOPS
  13. ECHO Y | DEL %1
  14. RD %1
  15. ECHO %1 OBLITERATED.
  16. GOTO END
  17. :OOPS
  18. ECHO Enter a subdirectory to erase
  19. ECHO after the %0. Be careful!
  20. :END
  21.