How to Locate a Specific File or Files on a UNIX Server
I wish to know how can I locate a specific file or files on a unix server.
You may use the find command.
find <location> <-name "pattern">
The parameter location specifies which directory to search in. To search in the present directory use '.' (dot) without quotes.
The parameter pattern can contain wildcards. Having the pattern as "nibbleguru" will only search for files/ folders named exactly "nibbleguru" where have having the pattern as "nibble*" will search any filename beginning with the word "nibble".
Post new comment
2 Steps to Post a New Problem

