Easy ways to find files on Linux / Mac terminal
I needed to find a PDF but I forgot the name. I opened a terminal and I'm in my home directory.
find . -name '*.pdf' -print
Will return a list of PDF's in my home directory. Easy!
Looking for a installed program location?
whereis httpd
Will return Apache's http server
