摘要: shell 重启java 程序 #!/bin/sh jarname='test-1.0' pid=`ps aux | grep $jarname | grep -v grep | awk '{print $2}'` echo $pid kill -9 $pid nohup java -jar $ja 阅读全文
posted @ 2020-11-20 13:54 就这个名字好 阅读(329) 评论(0) 推荐(0) 编辑