Add 'tree' and an alias.
This commit is contained in:
parent
65ac7cf70e
commit
baa9ea8ec8
|
@ -15,6 +15,7 @@ brew "pv"
|
||||||
brew "python3"
|
brew "python3"
|
||||||
brew "rename"
|
brew "rename"
|
||||||
brew "task"
|
brew "task"
|
||||||
|
brew "tree"
|
||||||
brew "vim"
|
brew "vim"
|
||||||
|
|
||||||
cask "alfred"
|
cask "alfred"
|
||||||
|
|
1
.bashrc
1
.bashrc
|
@ -123,6 +123,7 @@ if ! alias ll >/dev/null 2>&1; then function ll() { ls -l ${@}; } && export -f l
|
||||||
[[ -x $(which gdu 2>/dev/null) ]] && function du() { gdu ${@}; } && export -f du
|
[[ -x $(which gdu 2>/dev/null) ]] && function du() { gdu ${@}; } && export -f du
|
||||||
[[ -x $(which gsort 2>/dev/null) ]] && function sort() { gsort ${@}; } && export -f sort
|
[[ -x $(which gsort 2>/dev/null) ]] && function sort() { gsort ${@}; } && export -f sort
|
||||||
[[ -x /bin/ps && -x $(which pstree 2>/dev/null) ]] && function ps() { if [[ ${1} =~ 'f' ]]; then pstree; else /bin/ps ${@}; fi }
|
[[ -x /bin/ps && -x $(which pstree 2>/dev/null) ]] && function ps() { if [[ ${1} =~ 'f' ]]; then pstree; else /bin/ps ${@}; fi }
|
||||||
|
[[ -x $(which tree 2>/dev/null) ]] && alias tree="tree -AQh --du"
|
||||||
#--------------------------------------------------------------------------------
|
#--------------------------------------------------------------------------------
|
||||||
|
|
||||||
#--------------------------------------------------------------------------------
|
#--------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue