1 Star 0 Fork 40

zhengzy/CubeBox

forked from 施正楚/CubeBox 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stop.sh 305 Bytes
一键复制 编辑 原始数据 按行查看 历史
s 提交于 2014-12-23 19:08 . init
#!/bin/sh
pid=pid
if [ -f "$pid" ]
then
for line in `cat $pid`
do
ps -ef | grep "$line"
echo "stoping $line ............."
kill -9 $line 2> /dev/null
sleep 2
ps -ef | grep "$line"
echo 'removing file pid'
rm -f $pid &> /dev/null
echo "done!!!!!!!!!"
done
else
echo "$pid 不存在"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhengzy/CubeBox.git
[email protected]:zhengzy/CubeBox.git
zhengzy
CubeBox
CubeBox
master

搜索帮助