码迷,mamicode.com
首页 > 系统相关 > 详细

shell 判断字符串长度是否为0

时间:2018-12-08 11:17:40      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:ash   bsp   sssss   shel   enter   name   string   read   chm   

 

test.sh

#!/bin/bash
echo "enter the string:"
read filename
if test -z $filename ; then
echo "the length is 0"
else
echo "the length is not 0"
fi

执行

sudo chmod +x test.sh
./test.sh

输出

enter the string:

the length is 0

 

执行

./test.sh

输出

enter the string:
sssssss
the length is not 0

 

shell 判断字符串长度是否为0

标签:ash   bsp   sssss   shel   enter   name   string   read   chm   

原文地址:https://www.cnblogs.com/sea-stream/p/10085859.html

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