How to: show hidden all files including hidden ones in Linux command line

I did this in openSUSE.

It’s as simple as:

root@localhost ~]# ls -a

better yet, use alias if you want to include attributes:

root@localhost ~]# ll

far better with attributes:

root@localhost ~]# l

How cool is that? I didn’t create an alias for it. I accidentally hit hard return after pressing ‘l’. Nice huh.

Leave a Reply