利用for循环和shell数组打印下面这段话英文字母数不大于5的单词:
You have the most beautiful age, do not disappoint your best self
老规矩,首先分析:
1.找重点,for 和数组
2.字母书小于5的单词
value=(You have the most beautiful age, do not disappoint your best self)
for ((i=0;i<${#value[*]};i++))
do
if [ ${#value[$i]} -lt 5 ]
then
echo ${value[$i]}
fi
done
第二种方法
for word in ${value[*]}
do
if [ expr length $word
-lt 5 ];then
echo $word
fi
done
[root@node1 ~]# sh test.sh
You
have
the
most
age,
do
not
your
best
self
测试成功
方法还有很多,大家可以试试~
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。