Closed mhulse closed 5 years ago
I was searching for how to do latrF, and found this:
latrF
https://opensharing.fr/commandes-linux-ls
Digging this:
$ ls -lAtrFh --color=auto
Hides . and .., shows hidden items and ending slashes for dirs, and sorts in reverse chronological order.
.
..
I think I'll replace my current ll alias with this.
ll
Probably don't need the color=auto flag.
color=auto
Note that --color=auto is not supported on OS X. You want to use -G instead:
--color=auto
-G
https://superuser.com/a/183892
Added to feature branch house cleaning. Closing.
I was searching for how to do
latrF
, and found this:https://opensharing.fr/commandes-linux-ls
Digging this:
Hides
.
and..
, shows hidden items and ending slashes for dirs, and sorts in reverse chronological order.I think I'll replace my current
ll
alias with this.Probably don't need the
color=auto
flag.