search directory
Search Commands
Search tools, operations, flags, and command strings. Results are capped for Worker performance.
Bfs Commands
11 bfs entries
Limited to 100 results
bfs Operations
Bfs Command: Find And Delete Empty Files Or Directories
bfs <path/to/directory> -type <f|d> -empty -delete -print bfs Operations
Bfs Command: Find Directories Case Insensitive
bfs <path/to/directory> -type d -iname '<*lib*>' bfs Operations
Bfs Command: Find Files By Extension
bfs <path/to/directory> -name '<*.ext>' bfs Operations
Bfs Command: Find Files By Size Range
bfs <path/to/directory> -maxdepth 1 -size <+500k> -size <-10M> bfs Operations
Bfs Command: Find Files By Size Range Limited Depth
bfs <path/to/directory> -maxdepth 1 -size <+500k> -size <-10M> bfs Operations
Bfs Command: Find Files Exclude Paths
bfs <path/to/directory> -name '<*.py>' -not -path '<*/site-packages/*>' bfs Operations
Bfs Command: Find Files Excluding Paths
bfs <path/to/directory> -name '<*.py>' -not -path '<*/site-packages/*>' bfs Search
Bfs Command: Find Files Matching Multiple Patterns
bfs <path/to/directory> -path '<**/path/**/*.ext>' -or -name '<*pattern*>' bfs Archive
Bfs Command: Find Files Modified Today And Archive
bfs <path/to/directory> -daystart -mtime <-1> -exec <tar -cvf archive.tar> {} \+ bfs Archive
Bfs Command: Find Recently Modified Files
bfs <path/to/directory> -daystart -mtime <-1> -exec <tar -cvf archive.tar> {} \+ bfs Operations
Bfs Command: Run Command For Each File
bfs <path/to/directory> -name '<*.ext>' -exec <wc -l> {} \;