bashrc.d: Added some aliases for ls variants(needs further work)

This commit is contained in:
Gregor Bückendorf 2019-01-14 10:16:34 +01:00
parent 518afbf7d0
commit 373652f6b9

4
.bashrc.d/ls.sh Normal file
View file

@ -0,0 +1,4 @@
alias ls="ls --color=auto"
alias ll="ls --human-readable --color=auto -l"
alias la="ls --human-readable --all --color=auto -l"
alias lA="ls --human-readable --almost-all --color=auto -l"