加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

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

发布时间:2020-12-15 09:18:21 所属栏目:安全 来源:网络整理
导读:我有一个Bash脚本,根据变量的值执行操作。 case语句的一般语法是: case ${command} in start) do_start ;; stop) do_stop ;; config) do_config ;; *) do_help ;;esac 如果没有提供命令,我想执行默认例程,如果命令无法识别,则执行do_help。我试图省略ca
我有一个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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读