LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Find a file path and directory path (https://www.linuxquestions.org/questions/linux-newbie-8/find-a-file-path-and-directory-path-705959/)

ak.lokesh 02-19-2009 12:14 PM

Find a file path and directory path
 
Hi All,

What is the command we need to use to find out a path for a particular file and directory??

Thanks in advance.

TB0ne 02-19-2009 12:29 PM

Quote:

Originally Posted by ak.lokesh (Post 3449917)
Hi All,

What is the command we need to use to find out a path for a particular file and directory??

Thanks in advance.

Take a look at either the locate or find commands. Type in "man locate" or "man find". You don't say anything about the version/distro of Linux you're using.....

alan_ri 02-19-2009 12:35 PM

You can use which,find and whereis commands.
Code:

which firefox
/usr/bin/firefox

Code:

whereis firefox
firefox: /usr/bin/firefox /usr/lib/firefox /usr/bin/X11/firefox /usr/share/man/man1/firefox.1.gz

Code:


find / -name firefox
/usr/lib/firefox
/usr/lib/firefox/firefox


David the H. 02-19-2009 12:37 PM

What is the context or purpose for needing this information?

For files in the current directory, all you need to know is where that directory is, which you can get with the pwd command. For programs and system commands you can use which; "which mplayer", for example. Note that some commands are shell built-ins or aliases and such, and won't give you any output.

As for other files on the system, if you don't already know where they are, then you can't rightly run any commands on them, can you? All you can do is use find or locate to search for them.


All times are GMT -5. The time now is 04:27 PM.