[ "`type -t ll`" = alias ] && unalias ll
[ "`type -t mc`" = alias ] && unalias mc
- back() { cd - ${1:+"$@"}; }
+ back() { cd - "$@"; }
clo() { clear; logout; }
- eval 'functions() { typeset -f ${1:+"$@"}; }'
+ functions() { typeset -f "$@"; }
j() { jobs; }
if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
#fi
elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
- back() { cd - ${1:+"$@"}; }
+ back() { cd - "$@"; }
clo() { clear; exit; }
j() { jobs; }
#PWd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)/...\/\2/"; }
-psg() { ps auxw | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\)'; }
-pswg() { ps auxwww | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\)'; }
+psg() { ps auxw | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
+pswg() { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
# Like pgrep -f
-pidOf() { ps auxwww | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\|pidOf\|KillAll\)' | awk '{print $2}'; }
+pidOf() { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\|pidOf\|KillAll\)' | awk '{print $2}'; }
# A kind of pkill/killall
KillAll() {