美文网首页
shell-case

shell-case

作者: p_gerer | 来源:发表于2019-04-12 09:58 被阅读0次

基本语法:

case var in
value1)
       statement1
       statement1;;
value2)
       statement2
       statement2;;
*)
       statement2
       statement2;;
esac

相关文章

  • shell-case

    基本语法:

  • shell-case判断

    exit 、break、continue 三者区别 在此篇:https://www.jianshu.com/p/4...

  • shell-case语句-函数

    1.shell函数 1.1 函数的作用 1.2 函数的语法介绍 1.3 简单实践 调用函数非常简单, 只需要在脚本...

网友评论

      本文标题:shell-case

      本文链接:https://www.haomeiwen.com/subject/mazziqtx.html