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

Three methods about calculate string length

时间:2018-01-11 11:21:24      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:com   cal   eth   bash   welcome   lin   training   linx   str   

#! /bin/bash
for i in I am oldboy linx welcome to our training ;do
if [ echo ${#i} -ge 6 ];then
echo $i
fi
done

for i in I am oldboy linx welcome to our training ;do
if [ echo $i|wc -L -ge 6 ];then
echo $i
fi
done

for i in I am oldboy linx welcome to our training ;do
if [ expr length $i -ge 6 ];then
echo $i
fi
done

Three methods about calculate string length

标签:com   cal   eth   bash   welcome   lin   training   linx   str   

原文地址:http://blog.51cto.com/546136/2059731

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