silver-mx
2/23/2018 - 7:04 AM

Useful commands

# 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"