Improve tree aliases

This commit is contained in:
Fernando Schauenburg 2019-06-18 17:25:00 +00:00
parent 749982ba90
commit d410f51cf8

View file

@ -140,12 +140,10 @@ bashrc_customize_aliases() {
alias myip="dig +short myip.opendns.com @resolver1.opendns.com" alias myip="dig +short myip.opendns.com @resolver1.opendns.com"
alias tree="tree -F --dirsfirst" alias tree="tree -F --dirsfirst"
alias tra="tree -a" }
alias trl="tree -ugsh" # like ls -l (prints owner, group, human size)
alias trla="trl -a" ltree() {
alias trac="tra -C" tree -C -F --dirsfirst "$@" | less -R
alias trlc="trl -C"
alias trlac="trla -C"
} }
# Send an OSC (Operating System Commmand) to the terminal. # Send an OSC (Operating System Commmand) to the terminal.