New general aliases

This commit is contained in:
tinogomes 2012-01-28 14:56:13 -02:00
commit 76f5989d32
2 changed files with 16 additions and 0 deletions

View file

@ -24,3 +24,11 @@ alias sl=ls # often screw this up
alias afind='ack-grep -il' alias afind='ack-grep -il'
alias reload="source ~/.zshrc"
alias galias='alias | grep'
# Request confirmation before attempting to remove each file, regardless of the file's permissions, or
# whether or not the standard input device is a terminal. The -i option overrides any previous -f options.
#alias rm="rm -i"
alias psg='show_processes'

View file

@ -15,3 +15,11 @@ function take() {
cd $1 cd $1
} }
function show_processes() {
if (($# == 0)); then
ps -ef
else
echo " UID PID PPID C STIME TTY TIME CMD"
ps -ef | grep $*
fi
}