1 Star 0 Fork 1

殇花/Bilibili Live Stream Tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
shutdown.sh 302 Bytes
一键复制 编辑 原始数据 按行查看 历史
TODAY 提交于 2021-05-17 18:09 . init project
#!/bin/sh
# jar包名称
jar_name=api-1.0.jar
# 根据启动的jar包名称关闭旧的进程实例
pid=`ps -ef | grep ${jar_name} | grep -v grep | awk '{print $2}'`
echo "API接口服务旧应用进程ID:$pid"
if [ -n "$pid" ]
then
echo "关闭API接口服务旧进程:$pid"
kill -9 $pid
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shanghua521/bilibili-live-stream-tools.git
git@gitee.com:shanghua521/bilibili-live-stream-tools.git
shanghua521
bilibili-live-stream-tools
Bilibili Live Stream Tools
master

搜索帮助