码迷,mamicode.com
首页 > 其他好文 > 详细

[mess] [bash] 测试一个字符串长度为零

时间:2018-08-09 14:07:58      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:pass   使用   字符   int   字符串   测试   test   not   ash   

Bash 中使用 -z 测试一个字符串长度为零

VERSION="2018.08"

if [[ -z $VERSION ]]; then
  echo "would not print"
fi

if [[ -z $NOT_EXIST ]]; then
  echo "test pass"
fi

[mess] [bash] 测试一个字符串长度为零

标签:pass   使用   字符   int   字符串   测试   test   not   ash   

原文地址:https://www.cnblogs.com/wander4096/p/9448114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!