home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 February / psl_9403.zip / psl_9403 / DOS / UT_SYSTM / FORDO.ZIP / FORDO.DOC < prev    next >
Text File  |  1993-12-20  |  767b  |  19 lines

  1. This DOC file was prepared by Public (software) Library Tech Support
  2. because we had trouble figuring out the program from the information given.
  3. For more information or for a PsL catalog, call 713-524-6394.
  4.  
  5. FORDO is a utility for repeating a command for all files matching a file mask.
  6.  
  7. When you run FORDO, you are first prompted for a file mask. For test purposes,
  8. enter FOR*.* (assuming the files from FORDO.ZIP are in the current directory).
  9.  
  10. When prompted for what to do, enter:  TYPE %i
  11. and press Enter.
  12.  
  13. FORDO will pass the command to DOS to TYPE all files matching the mask FOR*.*
  14. which in this case should be FORDO.C and FORDO.EXE.
  15.  
  16. This is the equivalent of entering at the DOS prompt:
  17.  
  18.                       FOR %i IN (FOR*.*) DO TYPE %i
  19.