# Search for a pattern inside files egrep -R "pattern_to_search_for" [path] => egrep -R "develop-SNAPSHOT" . # Search for a file (CASE INSENSITIVE) find [path] -iname "name/pattern" => find . -iname "*.js"