To list files I use ls. I know how to list almost (-A) or all (-a) of them. But when I try to show the hidden files and hide the shown files I’m out of luck with:
ls --hide='*' -A
The behavior that the -A option neutralizes the --hide option is described in the documentation of ls.
So is there another option to ls I could use? The find–xargs–ls combo cannot be the only solution, right?
Indeed, use:
In order to ease my everday command line experience with the
bashshell I defined the following aliases building on top of each other: