home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / FILE / EDBIN04.ZIP / SSTR.BAT < prev   
Encoding:
DOS Batch File  |  1990-07-22  |  320 b   |  11 lines

  1. @echo off
  2. REM Syntax: SSTR STRING FILESPEC
  3. REM searches for STRING in all files matching FILESPEC
  4. REM using the list-strings command of EDBIN
  5. REM 
  6. REM Example: SSTR Copyright *.exe
  7. REM searches for the string "Copyright" in all EXE files
  8. REM in the current directory
  9. REM
  10. FOR %%F IN (%2) DO edbin %%F //%1 /l 
  11.