#scanit
A command line utility that recursively searches directories for files matching regex patterns.
Examples:
scanit \.rs$ -d /usr # Find Rust files in /usr \n
scanit '\.png$' --C # Find PNG files from currentory \n
scanit '^test.*\.js$' # Find JavaScript files starting with 'test' \n
scanit -H '\.git' # Find hidden git files \n
scanit -V #show version number
\n
Supports Unix and Windows paths automatically.
\n
Usage: scanit [OPTIONS] <PATTERN>
\n
Arguments:
<PATTERN>
Regex pattern to match files (e.g. \\.rs$)
\n
Options:
-d, --directory <DIRECTORY>
Starting directory for search
[default: /] if linux/mac
[default: C:/] if windows
\n
-C, --cd
Use current directory for search
\n
-H, --hidden
Show hidden files (e.g. .gitignore, .bashrc)
\n
-h, --help
Print help information
\n
-V, --version
Print version information