]> git.phdru.name Git - dotfiles.git/commitdiff
Justify commands to the longest one (pidOf)
authorOleg Broytman <phd@phdru.name>
Sat, 22 Nov 2014 03:26:16 +0000 (06:26 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 22 Nov 2014 03:26:16 +0000 (06:26 +0300)
.shellrc

index e348ff2e60ba6887f7c2734f8971ebbfb82d994f..2ef0bdbe64b309e02c4e01991c4449379ebc725b 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -75,8 +75,8 @@ esac
 #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 ${1:+"$@"} | grep -v '\(ps auxw\|grep\)'; }
+pswg()  { ps auxwww | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\)'; }
 
 # Like pgrep -f
 pidOf() { ps auxwww | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\|pidOf\|KillAll\)' | awk '{print $2}'; }