1 Star 0 Fork 10

suanmb/plugin_linux_base

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start.sh 350 Bytes
一键复制 编辑 原始数据 按行查看 历史
xrkmonitor 提交于 2020-09-17 11:35 . up
#!/bin/bash
rm _manual_stop_ > /dev/null 2>&1
proc=xrk_linux_base
Count=`pgrep -f xrk_linux_base -l |wc -l`
if [ $Count -gt 0 ]; then
echo "already start"
exit 0
fi
./$proc
pid=`ps -ef |grep $proc|grep -v tail|grep -v grep|awk '{print $2;}'`
if [ -z "$pid" ]; then
echo "start failed !"
exit 1
fi
echo "start ok pid: "
echo "$pid"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/baoxx/plugin_linux_base.git
git@gitee.com:baoxx/plugin_linux_base.git
baoxx
plugin_linux_base
plugin_linux_base
master

搜索帮助