系统教程导读

收集整理了【编写Linux脚本】操作系统教程,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含682字,纯文字阅读大概需要1分钟

系统教程内容图文

 以下是重启Linux下某进程的shell脚本,以tomcat进程为例:
#!/bin

pid=`ps -ef|grep tomcat|grep -v grep|awk '{print $2}'`
if [ "$pid" = "" ] ; then
    echo "tomcat service does not start!"
else
    kill -9 $pid
    pid1=`ps -ef|grep tomcat|grep -v grep|awk '{print $2}'`
    if [ "$pid1" = "" ] ; then
        echo "Successfully kill tomcat processes: " $pid
    else
        echo "tomcat kill process failed!"
        exit 1
    fi
fi
rm -rf /opt/tomcat/work/*
./startup.sh
pid2=`ps -ef|grep tomcat|grep -v grep|awk '{print $2}'`
if [ "$pid2" = "" ] ; then
   echo "tomcat service failed to start!"
else
   echo "tomcat service starts successfully:" $pid2
fi 

【本文来自】【为您提供如需转载请注明!】【推荐】【win10下载】

系统教程总结

以上是为您收集整理的【编写Linux脚本】操作系统教程的全部内容,希望文章能够帮你了解操作系统教程编写Linux脚本
如果觉得操作系统教程内容还不错,欢迎将网站推荐给好友。

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 编写Linux脚本