该man
页面说case
语句使用“文件名扩展模式匹配”。
我通常希望对某些参数使用简称,所以我去了:
case $1 in
req|reqs|requirements) TASK="Functional Requirements";;
met|meet|meetings) TASK="Meetings with the client";;
esac
logTimeSpentIn "$TASK"
我尝试了类似的模式,req*
或者me{e,}t
我知道可以在文件名扩展的上下文中正确扩展以匹配这些值的模式,但是它不起作用。