如何在bash脚本中的case语句中使用模式?

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

logTimeSpentIn "$TASK"

我尝试过像req *或me {e,}这样的模式,我理解它会正确扩展以匹配文件名扩展上下文中的那些值,但它不起作用.

支撑扩展不起作用,但*,?和[]做.如果你设置shopt -s extglob然后你也可以使用 extended pattern matching

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

这是一个例子:

shopt -s extglob
for arg in apple be cd meet o mississippi
do
    # call functions based on arguments
    case "$arg" 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
        m+(iss)?(ippi) ) fizz;;   # matches "miss" or "mississippi" or others
        *              ) bazinga;; # catchall,matches anything not matched above
    esac
done
原文链接:https://www.f2er.com/bash/387232.html

猜你在找的Bash相关文章