home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / australi / ffind350.lzh / DEMO210.BAT < prev    next >
DOS Batch File  |  1990-11-27  |  376b  |  18 lines

  1. @ECHO OFF
  2. ECHO FFIND demo of -G option.
  3.  
  4. ECHO Here we go....
  5. :start
  6. rem ffind -f = all drives, -x no = archives, -g = go to dir no prompt.
  7. rem -n no network drives for all bak files
  8. ffind -xfng *.bak
  9. rem if one pass without finding anything then exit
  10. if errorlevel 1 goto :end
  11. ECHO ON
  12. FOR %%V IN (*.BAK) DO Del %%V
  13. ECHO OFF
  14. goto :start
  15.  
  16. :end
  17. ECHO FFIND done.
  18.