如何在Bash case语句中测试一个空字符串?

前端之家收集整理的这篇文章主要介绍了如何在Bash case语句中测试一个空字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个Bash脚本,根据变量的值执行操作。 case语句的一般语法是:
case ${command} in
   start)  do_start ;;
   stop)   do_stop ;;
   config) do_config ;;
   *)      do_help ;;
esac

如果没有提供命令,我想执行默认例程,如果命令无法识别,则执行do_help。我试图省略case值这样:

case ${command} in
   )       do_default ;;
   ...
   *)      do_help ;;
esac

结果是可预测的,我想:

Syntax error near unexpected token `)'

然后我试着用正规表达式使用我最好的镜头:

case ${command} in
   ^$)     do_default ;;
   ...
   *)      do_help ;;
esac

有了这个,一个空的$ {command}落到了* case。

我想做不可能的事吗?

case语句使用globs,而不是regexes,并坚持使用完全匹配。

所以空字符串像往常一样被写为“”或“’:

case "$command" in
  "")        do_empty ;;
  something) do_something ;;
  prefix*)   do_prefix ;;
  *)         do_other ;;
esac
原文链接:https://www.f2er.com/bash/389767.html

猜你在找的Bash相关文章