How to Find a file by name in UNIX/Solaris/Linux?
Filed in Linux and Unix OS, Operating Systems on Jul.10, 2009
To find a file in UNIX, Solaris, or Linux, you can use the ‘Find‘ command.
Exampel: find / -name apache.* -print
This will search the whole system for any filename with apache and print the output to the screen.
Other arguments for the Find command:
-user username <– this will search files owned by an user
-group groupname <– this [...]
