shell for循环1到100

用bash shell写程序时,经常会用到for循环,特别是从1到100这种需求,这里记录几种shell中从1到100的循环方法

方法

类c语言

[html]  view plain  copy
 print ?
  1. for ((i=1; i<=100; i ++))  
  2. do  
  3.     echo $i  
  4. done  


in使用

[html]  view plain  copy
 print ?
  1. for i in {1..100}  
  2. do  
  3.     echo $i  
  4. done  

seq使用

作用

[html]  view plain  copy
 print ?
  1. seq - print a sequence of numbers  

代码

[html]  view plain  copy
 print ?
  1. for i in `seq 1 100`  
  2. do  
  3.     echo $i  
  4. done  

记录一下总是遗忘的shell语法,省得每次都去百度
posted @ 2017-04-27 10:23  枫奇丶宛南  阅读(148)  评论(0编辑  收藏  举报