bash脚本中case语句中的模式

前端之家收集整理的这篇文章主要介绍了bash脚本中case语句中的模式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
man页面说case语句使用“文件名扩展模式匹配”。
我通常希望有一些参数的短名称,所以我去:
case $1 in
    req|reqs|requirements) TASK="Functional Requirements";;
    met|meet|meetings) TASK="Meetings with the client";;
esac

logTimeSpentIn "$TASK"

我试图模式像req *或我{e,} t,我理解会正确扩展以匹配文件扩展的上下文中的值,但它不工作。

大括号扩展不工作,但*,?和[]做。如果你设置shopt -s extglob然后你还可以使用:

>?() – 零或一次出现的模式
> *() – 零个或多个模式出现
>() – 一次或多次出现模式
> @() – 一次出现模式
>!() – 除了模式之外的任何东西

这里有一个例子:

case $1 in
    a*           ) foo;;    # matches anything starting with "a"
    b?           ) bar;;    # matches any two-character string starting with "b"
    c[de]        ) baz;;    # matches "cd" or "ce"
    me?(e)t      ) qux;;    # matches "met" or "meet"
    @(a|e|i|o|u) ) fuzz;;   # matches one vowel
esac
原文链接:https://www.f2er.com/bash/390283.html

猜你在找的Bash相关文章