shell默认参数脚本

如果不加参数则默认执行restart函数,加stop,则执行stop函数

#!/bin/bash
# version
function stop(){
  # stop  the command
}
function start(){
  # Start  the command
}
function restart(){
    stop
    sleep 5
    start
}
cmd=$1
${cmd:-restart}


作者:Outsrkem
出处:https://www.cnblogs.com/outsrkem/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

原文地址:https://www.cnblogs.com/outsrkem/p/11196724.html