Linux find command with examples

http://www.linuxforum.com/linux_tutorials/92/1.php
The above web site has many examples of using the find command in unix/linux
eg
Plus many others
The above web site has many examples of using the find command in unix/linux
eg
- Code: Select all
1. Find file with file name 'foo'
find /-name foo
find /-name fo*
-name <pattern> : Pattern could be a exact file name or wildcard * can be used
Plus many others