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.
If you want test.log, test2.log, and file2 then:
test.log
test2.log
file2
find . -type f
If you do not want file2 then:
find . -maxdepth 1 -type f
2.1m questions
2.1m answers
60 comments
57.0k users