Linux: How can I find a file on my system?

by Vivek Gite on September 28, 2006 · 0 comments

Q. I have remove server. I login through SSH program. How do I find a file called xyz on my Linux server system?

A. You can use find command. It search for files in a directory hierarchy under Linux and all other UNIX like oses. Use find command to find a file from shell prompt.

Find command syntax

find Search-Directory-Path -name file-name-to-search

Examples

To find a file called zyz in /home/user directory type the command:
$ find /home/user -name xyz

To find a file called passwd in / (search entire system) directory type the command:
$ find / -name passwd

See this previous article for more info.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 6 + 7 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: