[SOLVED] Find a file in directories without using find command
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
I should have thought further ahead on that. As written, it will show you the files, but not where they're located (i.e. full path). The below is better:
Code:
for i in $(ls -R | grep \.jpg); do echo "$(readlink -f "$i")"; done
EDIT 2: This still isn't that useful - it omits the directory tree below the $PWD :/
Last edited by GrapefruiTgirl; 08-03-2010 at 09:46 PM.
Reason: Added afterthought to make useful post.
Gahh!! I'm having a brainless evening here.. My earlier suggestions didn't work well; I tried frankbell's suggestion of `whereis`, and also `which`, but those didn't work. Finally I tried using `locate` and that worked -- but like frankbell mentioned, `locate` will also not work right if you lack permissions.
Here's an example of something that works, provided you have the permissions:
Code:
sasha@reactor: for i in $(ls -R | grep Argentine); do locate "$i"; done
/home/sasha/Reptile_&_Snake/MISC_other_docs/Argentine_boas.info
/home/sasha/Reptile_&_Snake/snakies_pictures/Occidentalis/B.c.occidentalis.Argentine.2.jpg
/home/sasha/Reptile_&_Snake/snakies_pictures/Occidentalis/B.c.occidentalis.Argentine.3.jpg
/home/sasha/Reptile_&_Snake/snakies_pictures/Occidentalis/B.c.occidentalis.Argentine.jpg
sasha@reactor:
Phew -- time for sleep I think.
Last edited by GrapefruiTgirl; 08-03-2010 at 09:52 PM.
Reason: Removed unnecesary `echo`
if your admin disables find, most probably tools like locate, whereis etc are also disabled ( except if admin only knows about find which i doubt). Then you can just use the shell. (bash, ksh etc)
By the way, if there is a policy to restrict commands, why are circumventing it ? If you really need to find your files, then ask your admin to show you how.
Thanks for replying! It helped me a lot in other problems also, but if I want to get the list of all the ".jpg" files then how shoul I proceed, as there are number of sub directories....!!
Thanks for replying! It helped me a lot in other problems also, but if I want to get the list of all the ".jpg" files then how shoul I proceed, as there are number of sub directories....!!
I just tried du -h then it showed the file size and listed all the directories, but I need to find out all the ".jpg" images existing in different sub folders and copy them to a single folder at one place... Kindly help me in this!
Here's an example of something that works, provided you have the permissions:
[code]
sasha@reactor: for i in $(ls -R | grep Argentine); do locate "$i"; done
Hey.......!!! Thanks a lot it helped me.....
Using this I found all my .jpg files as:
for i in $(ls -R); do locate "*.jpg" /absolute/path/to/parent/directory; done
Also can you please help me again.......I want to find path to "sik" directory or file wherever existing in sub directories.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.