pkill_zsh

This commit is contained in:
Ivan Malison 2015-02-04 13:30:11 -08:00
parent 20e3f66fdd
commit 21922e152f

View File

@ -346,3 +346,7 @@ function android_sdk_directory {
brew --prefix android-sdk
fi
}
function pkill_zsh {
ps aux | grep "$1" | grep -v grep | get_cols 2 | xargs kill -9
}