Add some more aliases
This commit is contained in:
parent
7f79985cd6
commit
667391bac5
1
.bashrc.d/ll
Normal file
1
.bashrc.d/ll
Normal file
|
@ -0,0 +1 @@
|
||||||
|
if ! alias ll >/dev/null 2>&1; then function ll() { ls -l "${@}"; } && export -f ll; fi
|
1
.bashrc.d/psgrep
Normal file
1
.bashrc.d/psgrep
Normal file
|
@ -0,0 +1 @@
|
||||||
|
[[ ! -x $(which psgrep 2>/dev/null) ]] && function psgrep() { ps -ef | grep "${@}" | grep -v ${$}; } && export -f psgrep
|
1
.bashrc.d/tree
Normal file
1
.bashrc.d/tree
Normal file
|
@ -0,0 +1 @@
|
||||||
|
[[ -x $(which tree 2>/dev/null) ]] && alias tree="tree -AQh --du"
|
Loading…
Reference in a new issue