Last active
May 17, 2021 00:58
-
-
Save GoingMyWay/7b9effa8dcc8c7d8d474c90cf29cda0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "task: ${1}, to be killed" | |
ps -ef | grep $1 | |
echo "killing task: ${1}" | |
for id in `ps -ef | grep $1 | awk ' { print $2 } '`; do kill -9 $id; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So, now you need only type like this
Installation