Find
recursively descends the directory tree for each path listed, evaluating an expression
wont follow soft links
Find file by name
find . -iname [word]
find . -iname local # => ./Projects/local
Find some string in all files in cur dir
find . -type f -print0 | xargs -0
# OR
grep "some string"
Last updated