过时猎豹

文章
5
资源
0
加入时间
2年10月21天

shell脚本重启

#!/bin/shpid=$(ps -efww|grep -w “cloud”|grep “java”|grep -v “grep”|awk ‘{print $2}’)echo $pidfor id in $piddokill -9 $id;echo “killed $id”doneecho “restart”java -Dfile.encoding=utf-8 -jar xxx...