The find utility is a bit more aggressive than locate and which. The find utility will return all the results that contain the keyword or string we have specified. In our example, we've used the find command to provide us with a listing of all files (including their directories) that begin with nc:
The man command can help us understand how a tool or utility works. The man command is used to provide us with the manual page for a tool. We can view the man page of the find utility using the man find command:
The man command can ...