home *** CD-ROM | disk | FTP | other *** search
/ Best of German Only 1 / romside_best_of_german_only_1.iso / doshelp / freeware / freeware.exe / ANTIVIR / VDEL.BAT < prev    next >
DOS Batch File  |  1993-03-01  |  639b  |  24 lines

  1. @echo off
  2. echo off
  3. echo VDEL 1.00  (Virusdeleter)  (C)opyr. 1993 by ROSE, Ralph Roth    - FREEWARE -
  4. if "%1"x == ""x goto usage
  5.  
  6. echo Overwriting of all files matching "%1" . . . hit any key to start . . .
  7. echo This file was deleted by VDEL.COM! ---------------------------->vdel.tmp
  8. pause>>vdel.tmp
  9. for %%a in (%1) do copy vdel.tmp %%a >>vdel.tmp
  10. echo Deleting of all files matching "%1" . . .
  11. for %%a in (%1) do del %%a >nul
  12. del vdel.tmp>nul
  13. goto the_end
  14.  
  15. :usage
  16.  
  17. echo VDEL - overwrites AND deletes files.   - DANGER!-     DATA may be lost!
  18. echo.
  19. echo   usage: VDEL [files]        (wildcards ok!)
  20.  
  21. :The_end
  22.  
  23. echo.
  24.