Useful find commands in daily life
Magical Find With Grep : find ./ -type f -name "*.txt" -exec grep 'Geek' {} \; find app/ -type f -name "*.php" -exec grep -rl 'getPrice()' {} \; find app/ -type f -name "*.js" -exec grep 'ds-filter' {} \;