]> git.phdru.name Git - dotfiles.git/commitdiff
killall can also be used to kill processes by name
authorOleg Broytman <phd@phdru.name>
Sat, 22 Nov 2014 03:27:24 +0000 (06:27 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 22 Nov 2014 03:27:24 +0000 (06:27 +0300)
.shellrc

index 2ef0bdbe64b309e02c4e01991c4449379ebc725b..b6c98926e00b4d9aa8f9af5ec8f02d18ece36831 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -81,7 +81,7 @@ 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}'; }
 
-# A kind of pkill
+# A kind of pkill/killall
 KillAll() {
    if [ -z "$2" ]; then
       kill `pidOf "$1"`