美文网首页
case 语句用法

case 语句用法

作者: thebeeman | 来源:发表于2017-02-21 16:02 被阅读0次

    bash case 用法与c语言类似,结构固定:

    case xx in

             case-x)

                        xx xx

              ;;

              *)

                        xx xx

              ;;

    esac

    注意“;;”设置ok,其他情况使用“*”表示,最后把“esac”添加上。

    相关文章

      网友评论

          本文标题:case 语句用法

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