find <path>... <find-expr>

Find files.

exprs -
-name <file>	True if <file> found.
-perm <#>	True if file permission value = (octal) <#>.
-type <t>	True if type of file matches <t> (b/c/d/f).
-user <uname>	True if file owner = <uname>.
-group <gname>	True if file group = <gname>.
-atime n	True if file has been accessed in n days.
-mtime n	True if file has been modified in n days.
-exec <cmd>	Executes cmd ended with '\;' & returns value of cmd.
-ok			Same as exec, but verify.
-print		Print the current pathname.
-newer <file>	True if current file is more recent than <file>.

Operators -
parens	- must be excaped.
!		- Negation.
		Concatanation of exprs implies logical and.
-o		- logical or.
