Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to generate recursive file listings with full paths

/home/ken/foo/bar

but as far as I can see both ls and find only give relative path listings

./foo/bar   (from the folder ken)

It seems like an obvious requirement but I can't see anything in the find or ls man pages.

share|improve this question
@IsaacRabinovitch You can't migrate questions older than 60 days to another site. – casperOne Nov 28 '12 at 12:32
voted to reopen since it is obviously useful but can't be migrated after 60 days. – Ken Nov 28 '12 at 19:22
1  
The fact that it can't be migrated isn't justification for it to be open as on topic on the site. – casperOne Nov 28 '12 at 19:25
6  
bash scripting isn't programming? Accredited Universities disagree with that one. – Zombies Jan 23 at 12:45
1  
This should have been migrated to Unix & Linux. I hate it when the mods just close a question as a reflex, without considering the possibility of migrating it. Sadly, this is an issue all around the SE network... EDIT: Just realized, I made the 128th upvote! At least you can still vote for closed questions.. :) – JamesTheAwesomeDude Apr 20 at 15:39
show 1 more comment

closed as off topic by casperOne Jan 9 '12 at 18:11

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

10 Answers

up vote 135 down vote accepted

If you give find an absolute path to start with, it will print absolute paths. For instance, to find all .htaccess files in the current directory:

find `pwd` -name .htaccess

find simply prepends the path it was given to a relative path to the file from that path.

Greg Hewgill also suggested using pwd -P if you want to resolve symlinks in your current directory.

share|improve this answer
1  
it was staring me in the face - thank you! – Ken Oct 29 '08 at 9:28
5  
Note that if you also want to resolve symlinks, use pwd -P. – Greg Hewgill Oct 29 '08 at 9:28
2  
This is helpful, but I think user431529's response below is more valid: ls -d -1 $PWD/**/* but I guess find $PWD also works (tested in bash) – Brian Apr 27 '11 at 16:47
5  
@Brian Why? find $PWD is simple. The ls incantation is complex and unwieldy (unless you alias it). find is not dependent on shell glob expansions, so will work in any shell. find is also a lot more flexible, I can get a recursive listing of all files, or perhaps of all directories, or maybe I want a listing of all xml files, or all files changed in the last week. All that is possible with find, but not easily with ls. – Matthew Scharley Jul 8 '11 at 7:31
9  
I had to use find "`pwd`" -name .htaccess because of spaces in directory names – Paulo Casaretto Apr 16 '12 at 17:47
show 5 more comments
readlink -f filename 

gives the full absolute path. but if the file is a symlink, u'll get the final resolved name.

share|improve this answer
Now this is really useful and straightforward! – UncleZeiv Feb 7 '11 at 11:47
2  
Nice. Does not work on the BSD Variant of readlink (i.e Mac).I use gnucoreutils on mac. And hence can use greadlink which works with the above solution. – sheki Aug 17 '11 at 10:29
3  
(+1) This is the answer, not the one that was selected :D – Hassan Syed Nov 29 '11 at 13:27
+1 This is what I am looking for! – Zhiqiang Ma Aug 31 '12 at 7:42
2  
No go on Mac OS X. – Andrew Lazarus Apr 17 at 18:47

Use this for dirs:

ls -d -1 $PWD/**

this for files:

ls -d -1 $PWD/*.*

this for everything:

ls -d -1 $PWD/**/*

Taken from here http://www.zsh.org/mla/users/2002/msg00033.html

share|improve this answer
4  
ls -d1 $PWD/* was exactly what I was looking for – Kamil Szot Jun 16 '11 at 9:38
   
ls -d -1 $PWD/**/* does not recurse. Wish I could take my +1 back. You can do ** for each depth you need to go though. – user606723 Aug 23 '11 at 4:59
3  
The ** operator is a recursive globbing operator. If you use the command in a shell that supports it (such as zsh), it will work properly. – zebediah49 Sep 2 '11 at 19:18
much faster than the find calls that i usually use. Thanks. – ephsmith Jul 28 '12 at 12:50

You can use

find $PWD

in bash

share|improve this answer
That will give the path of the current directory, and all the files and directories below it, as well. That's probably not what people are looking for. – Bill Apr 16 at 18:55
ls -d $PWD/*
share|improve this answer
doesn't work recursively – danio Jul 21 '10 at 10:46

If you give the find command an absolute path, it will spit the results out with an absolute path. So, from the Ken directory if you were to type:

find /home/ken/foo/ -name bar -print
(instead of the relative path find . -name bar -print)

You should get:

/home/ken/foo/bar

Therefore, if you want an ls -l and have it return the absolute path, you can just tell the find command to execute an ls -l on whatever it finds.

find /home/ken/foo -name bar -exec ls -l {} ;\

NOTE: There is a space between {} and ;

You'll get something like this:

-rw-r--r-- 1 ken admin 181 Jan 27 15:49 /home/ken/foo/bar

If you aren't sure where the file is, you can always change the search location. As long as the search path starts with "/", you will get an absolute path in return. If you are searching a location (like /) where you are going to get a lot of permission denied errors, then I would recommend redirecting standard error so you can actually see the find results:

find / -name bar -exec ls -l {} ;\ 2> /dev/null

(2> is the syntax for borne and bash shells, but will not work with c shell. It may work in other shells too, but I only know for sure that it works in bourne and bash).

I hope this helps!

share|improve this answer
lspwd() { for i in $@; do ls -d -1 $PWD/$i; done }
share|improve this answer
this is not recursive. – oligofren Jun 18 '12 at 17:03

The $PWD is a good option by Matthew above. If you want find to only print files then you can also add the -type f option to search only normal files. Other options are "d" for directories only etc. So in your case it would be (if i want to search only for files with .c ext):

find $PWD -type f -name "*.c" 

or if you want all files:

find $PWD -type f

Note: You can't make an alias for the above command, because $PWD gets auto-completed to your home directory when the alias is being set by bash.

share|improve this answer
Actually, -d doesn't mean only directories - it means it treats directories like files. So if you ls -d /home, you'll get back "/home", not a listing of what's in /home. – Travis Mar 4 '12 at 21:40
@Travis: he was talking about the option to find, not ls. In his case "find / -type d" would find only directories - as he said. – oligofren Jun 18 '12 at 17:04
ls -1 | awk  -vpath=$PWD/ '{print path$1}'
share|improve this answer
1  
Doesn't work recursively – danio Jul 21 '10 at 10:47

find / -print will do this

share|improve this answer
1  
...unfortunately it'll do something else (like displaying 'some' other files unless filtered) – DerMike Apr 12 '12 at 9:00

Not the answer you're looking for? Browse other questions tagged or ask your own question.