home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- REM This is OBLIVION.BAT
- REM
- REM OBLIVION.BAT wipes out subdirectories without asking if you're sure to
- REM you want to. Use this vert carfully. Don't try it late at night or
- REM unless you have DOS 5.0, The Norton Utilities, or another UNERASE
- REM program handy.
- REM
- REM It wipes out entrie directories,
- REM no questions asked, Be careful!
- REM
- IF %1!==! GOTO OOPS
- ECHO Y | DEL %1
- RD %1
- ECHO %1 OBLITERATED.
- GOTO END
- :OOPS
- ECHO Enter a subdirectory to erase
- ECHO after the %0. Be careful!
- :END
-