aboutsummaryrefslogtreecommitdiffhomepage
path: root/alias
diff options
context:
space:
mode:
Diffstat (limited to 'alias')
-rw-r--r--alias3
1 files changed, 2 insertions, 1 deletions
diff --git a/alias b/alias
index fe45c29..6794c2c 100644
--- a/alias
+++ b/alias
@@ -98,7 +98,8 @@ alias ll='ls -lh'
98alias lla='ls -lha' 98alias lla='ls -lha'
99llw() { which $1 | xargs ls -alh; } 99llw() { which $1 | xargs ls -alh; }
100alias hg='history | grep' 100alias hg='history | grep'
101rmrf() { mv $@ /tmp/ 2>/dev/null || rm -rf $@; } 101trash() { mv $@ /tmp/ 2>/dev/null || rm -rf $@; }
102rmrf() { rm -rf $@; }
102alias rr='_move_to_tmp' 103alias rr='_move_to_tmp'
103alias sound="echo -ne '\a'" 104alias sound="echo -ne '\a'"
104pst(){ pstree -ps ${1:-$$}; } 105pst(){ pstree -ps ${1:-$$}; }