vote up 1 vote down star

I am looking for a way to list all the files in a directory excluding directories themselves, and the files in those sub-directories.

So if I have:

./test.log
./test2.log
./directory
./directory/file2

I want a command that returns: ./test.log ./test2.log and nothing else.

flag

man find – Instantsoup Aug 19 at 15:27

7 Answers

vote up 4 vote down check

If you want test.log, test2.log, and file2 then:

find . -type f

If you do not want file2 then:

find . -maxdepth 1 -type f
link|flag
vote up 1 vote down

using find is simple as:

find . -maxdepth 1 -type f
link|flag
vote up 0 vote down

Try looking up "find", it should be able to do that.

link|flag
vote up 0 vote down
find . -type f
link|flag
You are right, misread the question. John Kugelman posted a more complete answer. – amrox Aug 19 at 15:38
vote up 0 vote down
find /some/directory -type f
link|flag
wrong, this is recursive (file2 must no be included) – dfa Aug 19 at 16:02
vote up 0 vote down

$ find . -type f -print

Each file will be on its own line. You must be in the directory you want to search.

link|flag
wrong, this is recursive (file2 must no be included) – dfa Aug 19 at 16:03
vote up 0 vote down

One more option

ls -ltr | grep ^d
link|flag

Your Answer

Get an OpenID
or
never shown

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