home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / sysutl / wildcard.arc / WILDCARD.MSG < prev   
Internet Message Format  |  1988-08-01  |  1KB

  1. From: bright@dataio.Data-IO.COM (Walter Bright)
  2. Newsgroups: comp.binaries.ibm.pc
  3. Subject: Wildcard expansion for any command, w/DLC source
  4. Summary: wildcard.com, expand wildcard before invoking a command
  5. Date: 27 Jul 88 17:04:16 GMT
  6. Approved: dhesi@bsu-cs.UUCP
  7.  
  8. [ The supplied executable appears to have been compiled with Datalight
  9. C version 3.10.  -- R.D. ]
  10.  
  11. Have you ever gotten frustrated by MS-DOS programs that wouldn't work with
  12. wildcards or multiple filenames? I sure have, and have written a program
  13. to solve it. As an example, consider the FIND program that comes with DOS.
  14. It doesn't work if you give it more than one filename, as in:
  15.     FIND "string" *.c
  16. or:
  17.     FIND "string" file1 file2 file3
  18. With WILDCARD, these commands can be done! It works by executing the specified
  19. program n times, where n is the number of files. For example, the above
  20. commands would be done as:
  21.     WILDCARD FIND -"string" *.c
  22. and:
  23.     WILDCARD FIND -"string" file1 file2 file3
  24. The - means that the rest of the argument is passed to each invocation
  25. of FIND. For the second example, WILDCARD will do the equivalent of:
  26.     FIND "string" file1
  27.     FIND "string" file2
  28.     FIND "string" file3
  29.  
  30. Both source (for Datalight C) and a executable are included.  Enjoy!
  31. It's hereby donated to the public domain.
  32.