哭泣橘子

文章
3
资源
0
加入时间
2年10月21天

bash shell for循环1到100 .

前言用bash shell写程序时,经常会用到for循环,特别是从1到100这种需求,这里记录几种shell中从1到100的循环方法方法类c语言[html] view plaincopyprint?for((i=1;i<=100;i++))doecho$idonefor ((i=1; i&lt...