Page 1 of 1

Linux find command with examples

PostPosted: Mon Nov 13, 2006 7:05 pm
by stephen
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
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