码迷,mamicode.com
首页 > 编程语言 > 详细

for循环和shell数组小脚本案例

时间:2019-11-02 09:59:29      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:打印   point   脚本   字母   重点   i++   sel   很多   shell数组   

利用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

测试成功

?方法还有很多,大家可以试试~

for循环和shell数组小脚本案例

标签:打印   point   脚本   字母   重点   i++   sel   很多   shell数组   

原文地址:https://blog.51cto.com/14573101/2447225

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