Chinaunix首页 | 论坛 | 博客
  • 博客访问: 831986
  • 博文数量: 117
  • 博客积分: 2595
  • 博客等级: 少校
  • 技术积分: 1204
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-18 18:16
文章分类

全部博文(117)

文章存档

2013年(1)

2012年(2)

2011年(18)

2010年(95)

2009年(1)

分类:

2010-05-30 11:33:06


bogon:100APPLE jasonG$ help for

for: for NAME [in WORDS ... ;] do COMMANDS; done

    The `for' loop executes a sequence of commands for each member in a

    list of items.  If `in WORDS ...;' is not present, then `in "$@"' is

    assumed.  For each element in WORDS, NAME is set to that element, and

    the COMMANDS are executed.

for ((: for (( exp1; exp2; exp3 )); do COMMANDS; done

    Equivalent to

     (( EXP1 ))

     while (( EXP2 )); do

     COMMANDS

     (( EXP3 ))

     done

    EXP1, EXP2, and EXP3 are arithmetic expressions.  If any expression is

    omitted, it behaves as if it evaluates to 1.


其实语法很简单就是
 for i in `ls`; do 
   echo $i; 
 done
阅读(1186) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~