Last active
August 29, 2015 14:09
-
-
Save EdwardsBean/8899bfd0c60bf333a940 to your computer and use it in GitHub Desktop.
java程序停止脚本
This file contains hidden or 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 | |
FRAMWORK_MAIN_CLASS="" | |
if [ -z $FRAMWORK_MAIN_CLASS ]; then | |
echo "FRAMWORK_MAIN_CLASS为空!" | |
exit 1 | |
fi | |
echo "kill $FRAMWORK_MAIN_CLASS" | |
ps -ef|grep $FRAMWORK_MAIN_CLASS|grep -v grep|cut -c 9-15|xargs kill |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment