标签:cti load 路径 star $0 start 文件 init 目录
shell脚本模拟nginx服务启动与关闭#!/bin/bash///定义哪种脚本语言解释下面的语句
[ -f /etc/init.d/functions ]&& . /etc/init.d/functions ///判断并加载系统函数
nginx="/application/nginx/sbin/nginx" ///nginx服务安装的目录下启动文件
start(){ ///定义start函数
$nginx ///start函数要执行的指令
}
stop(){ ///定义stop函数
$nginx -s stop//stop///stop函数要执行的指令
}
reload(){///定义reload函数
$nginx -s reload///reload函数要执行的指令
}
case "$1" in///case判断语句“变量”in从哪里取变量的值,调用上述定义的函数
start)
start
;;///当前判断结束,继续向下执行
stop)
stop
;;
restart)
stop
start
;;
reload)
reload
;;
*)///如以上变量值都不满足,便输出echo后面的内容,$0表示脚本的全路径
echo "usage:$0 {start|stop|restart|reload}"
esac///case判断语句结束
CentOS6.8 x86_64bit shell脚本实现模拟nginx服务启动与关闭
标签:cti load 路径 star $0 start 文件 init 目录
原文地址:http://blog.51cto.com/11047966/2069747