home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / dirutl / glob11.arc / GLOB.Z < prev   
Text File  |  1988-04-22  |  593b  |  18 lines

  1. Name: glob - match files against regular expression
  2.  
  3. Synopsis: glob pathname
  4.  
  5. Description: glob uses regexp(3) to match files against the pathname
  6.            which may be a regular expression as described in ed(1)
  7.            and egrep(1). If a path is not given, the current 
  8.            directory is used. The pathname must use '/' instead
  9.            of the MSDOS '\' because the \ is interpreted as
  10.            part of the regular expression.
  11.  
  12. Example:       The following shows all executable files in the 
  13.            current dir:    
  14.             glob "*\.(EXE|BAT|COM)"
  15.  
  16. Bugs:        Case is insignifigant due to MSDOS . 
  17.     
  18.