Grep search command everyone should memorise
It’s a neat and powerful command that all *nix users should know. >> grep -rn “keyword” * This does a search for the keyword. * = all files -r = recursive (for all child directories) -n = show line numbers