VDS Sphera Knowledge Base
| Main / Browse Categories / Unix / Linux / How can I use the find command to find a specific file? |
How can I use the find command to find a specific file?
Here is the command using find.
find / -not \( -path '/proc' -prune -o -path '/etc/depend' -prune \) -name FILE_NAMEAlternatively, you could search for a partial name by using a wildcard(*). find / -not \( -path '/proc' -prune -o -path '/etc/depend' -prune \) -name *PARTIAL_NAME
User Comments
|
||||||||
Attachments
| No attachments. |
Related Articles


