home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / FT301O.ZIP / FTL.CMD < prev    next >
OS/2 REXX Batch file  |  1991-03-14  |  588b  |  22 lines

  1. @echo off
  2. echo off
  3.  
  4. rem    This batch file is used to search for 'likely' files only.
  5. rem    A file is likely if it's extension is not one of those listed
  6. rem    below, and it's size is less than 200,000 bytes.
  7.  
  8. if "%1" == "" goto :USAGE
  9. ft -f"%1^*.exe;*.com;*.zip;*.arc;*.lzh;*.ark;*.obj;*.lib;*.dll" -S200000 %2 %3 %4 %5 %6 %7 %8 %9
  10. goto:END
  11.  
  12. :USAGE
  13. echo  
  14. echo Find Text Likely
  15. echo usage: ftl [files] [text] [opt]
  16. echo    [files] - files to look in (\*.*+ for entire disk)
  17. echo    [text]  - text to search for
  18. echo    [opt]   - any Find Text options
  19. echo  
  20. :END
  21.  
  22.