Linux Command - Find files
by Francis[ Edit ] 2012-10-17 18:53:07
Linux Command - Find files
Command : find
A very powerful command, but sometimes tricky to use. It can be used to search for files matching certain patterns, as well as many other types of searches.
Syntax : find . -name *php
This Syntax starts searching in the current directory "." and all sub-directories, looking for files with "php" at the end of their names.