Skip to content

Instantly share code, notes, and snippets.

@EdwardsBean
Last active August 29, 2015 14:09
Show Gist options
  • Save EdwardsBean/8899bfd0c60bf333a940 to your computer and use it in GitHub Desktop.
Save EdwardsBean/8899bfd0c60bf333a940 to your computer and use it in GitHub Desktop.
java程序停止脚本
#!/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