find ~ -name "example.txt"
Will Find Example.txt in home dir
find ./home/gary -name sample.txt
Will Find Example.txt in home dir
find ./home/gary -name *.txt
Will Find all txt files in home dir
find /ect -name sample.txt -exec rm -i {} \;
Will find and remover text file in .ect
find ./home/gary -empty
Will find emty files in home dir
find ./home/gary -perm 664
find . -type d
find ./ -type f -name "*.txt" -exec grep 'Geek' {} \;
find . -type f -exec grep -l "pattern" {} \;