# jfind
Read Time: 1 minute(s)
Tags: search program tools
# Description
The Windows platform does not provide a command line search program like the UNIX find command. This is a limited form of the Unix find command for the Windows platform. The format of the command is as:
jfind pathlist options
1
where option may be:
Option | Description |
---|---|
-name pattern | finds files whose name matches pattern |
prints the pathname for files found | |
-type d | f |
# Example
jfind C:\MYDIR -name ".*AUSTIN.*" -print
1
This command is useful when used to pipe data to the jbackup command, e.g.
jfind C:\accounts -print | jbackup -f C:\my_backups\my_accounts.bak
1
Back to Tools and Utilities