linux-启动停止重启shell 简单shell示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux-启动停止重启shell 简单shell示例相关的知识,希望对你有一定的参考价值。
停止:
#!/bin/bash
pid=`ps -ef|grep /opt/lampp|grep -v grep|awk ‘{print $2}‘|wc -l`
b=0
if [ $pid -gt $b ]
then
ps -ef|grep /opt/lampp|grep -v grep|awk ‘{print $2}‘|xargs kill -9
echo "lammp has stopped!"
else
echo "lammp is not running!"
fi
启动:
#!/bin/bash
pid=`ps -ef|grep /opt/lampp|grep -v grep|awk ‘{print $2}‘|wc -l`
b=0
if [ $pid -gt $b ]
then
echo "lammp is already running!"
else
/opt/lampp/lampp start
echo "lammp has started!"
tail -f /opt/lampp/logs/access_log
fi
重启:
/tmp/stopl.sh
/tmp/startl.sh
~
以上是关于linux-启动停止重启shell 简单shell示例的主要内容,如果未能解决你的问题,请参考以下文章
sh - 脚本学习 启动/停止/重启/部署jetty crontab