Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 432 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 432 Bytes

fd

A fast, concurrent files finder.

Commands

fd -h
fd [flags] [search] [path]

Examples

# search recursively
# exclude migrations folder 
# with extension sql
fd -r -x=migrations -e sql

# search recursively
# get search time
# count result
# exclude node_modules
# search with pattern '.*Service.*$' 
# in folder 'anothapp-services'
fd -r -t -c -x=node_modules -p .*Service.*$ .\anothapp-services