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