开始停止重启linux脚本,如众所周知的程序(apache,openvpn,squid等)

时间:2014-12-29 12:03:18

标签: bash

有没有人知道如何控制脚本(已创建)的执行,就像我们控制squid,基本运行和停止命令一样? 示例:
    #squid start;
     #squid stop;
     #squid restart;

1 个答案:

答案 0 :(得分:2)

这样的事情:

cmd=$1
case "$cmd" in
start)
    # code to start the service
    ;;
stop)
    # code to stop the service
    ;;
restart)
    # code to restart
    ;;
...
*) echo Invalid command: "$cmd"
    exit 1
    ;;
esac