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

用shell打印下面这句话中字母数小于6的单词

时间:2018-01-15 12:38:18      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:ash   inter   字母数   ret   number   ons   shell   bash   option   

Bash also interprets a number of multi-character options


答案:

#! /bin/bash
for i in bash also interprets a number of multi-character options
do
   n=`echo "$i" | wc -m`
   if (($n<6))
   then
      echo $i
   fi
done

用shell打印下面这句话中字母数小于6的单词

标签:ash   inter   字母数   ret   number   ons   shell   bash   option   

原文地址:http://blog.51cto.com/12129628/2061060

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