aboutsummaryrefslogtreecommitdiffhomepage
path: root/alias
diff options
context:
space:
mode:
Diffstat (limited to 'alias')
-rw-r--r--alias2
1 files changed, 1 insertions, 1 deletions
diff --git a/alias b/alias
index 7eaded5..59c3206 100644
--- a/alias
+++ b/alias
@@ -76,7 +76,7 @@ alias ll='ls -lh'
76alias lla='ls -lha' 76alias lla='ls -lha'
77llw() { which $1 | xargs ls -alh; } 77llw() { which $1 | xargs ls -alh; }
78alias hg='history | grep' 78alias hg='history | grep'
79rmrf() { mv $@ /tmp/; } 79rmrf() { mv $@ /tmp/ 2>/dev/null || rm -rf $@; }
80alias rr='_move_to_tmp' 80alias rr='_move_to_tmp'
81alias sound="echo -ne '\a'" 81alias sound="echo -ne '\a'"
82pst(){ pstree -ps ${1:-$$}; } 82pst(){ pstree -ps ${1:-$$}; }