vote up 1 vote down star

I've currently got:

ls -1 $(pwd)/*

Gives me all the files in a directory with absolute paths - but formats it with the directory at the start of each list of files.

Is there a way just to get a list of files in a directory recursively (absolute paths) - excluding the directory/sub-directories themselves?

flag

Sounds like you were describing ls -1R $(pwd)/*. – mrree Oct 24 at 0:22

2 Answers

vote up 4 vote down check
find $(pwd) -type f -print

or

find $(pwd) -type f -ls
link|flag
find $(pwd) -type f – Murali Oct 23 at 23:44
If one has files with spaces you'll need to edit the result of this command - space -> _. – unknown (google) Oct 24 at 0:05
vote up 0 vote down

If you are feeding it into something else, you might want -print0 (to handle filenames with spaces).

E.g.: find . -type f -print0 | xargs --null --no-run-if-empty grep

link|flag

Your Answer

Get an OpenID
or

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