Ubuntu – List all files that do not have extensions

command linefile formatls

I want to list all files in a directory that don't have extensions.

For example:

$ ls
a.txt    b      c.pdf     d     e.png
$ ls -someOption
b       d

What command I can use instead of ls -someOption?

Best Answer

shopt -s extglob ## enables extended globbing
ls !(*.*) ## matches every file except those containing a dot

You will find that doing this will show you the contents of every directory in the working directory. If you don't want this, use:

ls -d !(*.*)

You can put shopt -s extglob in your ~/.bashrc to have it activated whenever you open a terminal. There is already a line in the default Ubuntu ~/.bashrc (line 29 for me on 13.04) that you can uncomment to enable this (and globstar).

See Greg's wiki for more information on the shell's various globbing options. Note that this is a property of the bash shell rather than the ls command, so you can use it with other commands.

Alternatively, you can use

ls --ignore='*.*'

or

ls -I '*.*'

...which is an internal ls option, but extglob can be applied to any arbitrary command & so is more useful in my opinion.