home *** CD-ROM | disk | FTP | other *** search
- Program :
- LOCATE
-
- Usage :
- LOCATE [Filter] ["DOS command"]
- Filter ::= files to be located, wildcards are allowed.
- DOS command ::= DOS command that would be applied for located file,
- in command, `$s' indicates that file itself (see Examples.)
- /* quote marks cannot be omitted
- */
-
- Description :
-
- It is similar to Borland's TASM example WHEREIS but be improved.
-
- Examples:
-
- (1):- LOCATE
- /* to show all files and files in sub-directories from current
- directory
- */
-
- (2):- LOCATE *.c
- /* to show all .c files and .c files in sub-directories from current
- directory
- */
-
- (3):- LOCATE c:*.c
- /* to show all .c files and .c files in sub-directories from drive C:'s
- current directory
- */
-
- (4):- LOCATE c:\*.c
- /* to show all .c files in the drive C: (from root directory)
- */
-
- (5):- LOCATE *.c "type $s"
- /* to type all .c files and .c files in sub-directories from current
- directory
- */
-