Quote:
Originally posted by HadesThunder
I would like to know if there is a command or software that allows you to search for a file containing certain text "eg= mozilla" in all directories? I have tried 'find' but it only searches the current directory.
|
Well, you'd have to invoke this command when using find to search the whole filesystem:
find / -name <your-search-here>
You can also use locate, whereis, etc.