10 lines
406 B
Bash
10 lines
406 B
Bash
# Listing
|
|
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 ldot='ls -ld .*'
|
|
alias lS='ls -1FSsh'
|
|
alias lart='ls -1Fcart'
|
|
alias lrt='ls -1Fcrt'
|