Command to lookup, give information on and explain options for each command
man
Locate files based on search parameters
find -type f -iname (name to search for)
find -type d -iname (name of directory to search for)
-iname (I indicates, not case sensitive in search)
Command to search contents within a file
grep
grep 1st_item|2nd_item|3rd…
grep -i (case insensitive)
grep -il (l used to return the file name)
Count the number of lines in a file or output
wc