For finding the location of files or directories.
find <startingdir>
if no starting directory was given, then it searches from the current working directory.
Find all files of specific type
find / -iname "*.pdf"
Find filename
find <dir> -name <filename>