How do I exclude directories when listing files?

Solution 1:

Try this one:

find . -maxdepth 1 -not -type d

Solution 2:

To get it exactly equivalent to ls . you need to not show hidden dirs.

find . -maxdepth 1 -not -type d -and -not -name '.*'

and that still leaves you with './' prefixed to each filename. That's not really an issue, but I think it's kinda ugly. I went with:

ls -p | grep -v '/$'

And that will get you a listing that looks the same, and you can add additional ls arguments too. Add a --color=always and you'll get your dircolors back, or -a to see hidden files.

I like Alexander's answer because he's actually depending on a filesystem characteristic of the file in question so it won't get fooled ever. My answer will get fooled by a file that has a '/' as the last character in it's name. But that seems like it's asking for trouble.


Solution 3:

try this:

$ find . -maxdepth 1 -type f

or this:

$ ls -p | egrep -v /$

$ ls -la | egrep -v ^d


Solution 4:

Though it's an old post, but i thought this might help..

$ ls -l |grep -v ^d

It will list all the files including symlinks,character and block files.


Solution 5:

The "find" solutions above lose some of the capabilities of ls - for example: list only files, sorted in descending modification time.

The "ls -p | grep" answers do not elegantly deal with other elements of ls such as -R should they be desired

The following answer, while more verbose, in my opinion reflects the truest ls behaviour and most flexibility for selecting "files only"

ls -t . | while read line; do
  if [ -f $line ]; then
    echo $line
  fi 
done

Simply replace the ls switches as desired and the result will be returned with files only. If links and other items are also required then minor rework would need to be done to the test for inclusion.

Tags:

Shell

Ubuntu

Ls