mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
fixed ls aliases
Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
This commit is contained in:
parent
429a29d5cd
commit
acb27b2272
1 changed files with 8 additions and 1 deletions
|
|
@ -3,12 +3,19 @@
|
|||
#
|
||||
|
||||
# ls, the common ones I use a lot shortened for rapid fire usage
|
||||
alias ls='ls -G' # I like color
|
||||
alias ls='ls --color' # I like color
|
||||
alias l='ls -lFh' # size,show type,human readable
|
||||
alias la='ls -lAFh' # long list,show almost all,show type,human readable
|
||||
alias lr='ls -tRFh' # sorted by date,recursive,show type,human readable
|
||||
alias lt='ls -ltFh' # long list,sorted by date,show type,human readable
|
||||
alias ll='ls -l' # long list
|
||||
alias lla='la' # long list
|
||||
alias l='la' # long list
|
||||
alias lsa='ls -lah'
|
||||
alias sl=ls # often screw this up
|
||||
|
||||
|
||||
|
||||
alias ldot='ls -ld .*'
|
||||
alias lS='ls -1FSsh'
|
||||
alias lart='ls -1Fcart'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue