欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

shell简单的循环

程序员文章站 2022-04-22 13:25:35
csh的循环写法: #!/bin/csh set num = 1 while ( $num < 10 ) cat $num.txt >> bds.txt @ num++ echo $num end bash的循环写法: #!/bin/bash num=0 while(( "$num" < 10 )) ......

csh的循环写法:

#!/bin/csh

set num = 1

while ( $num < 10 )

  cat $num.txt >> bds.txt

  @ num++

  echo $num

end

bash的循环写法:

#!/bin/bash

num=0

while(( "$num" < 10 ))

do

  dir=`echo "0$num"`

  [ ! -d /home/$dir ] && makdir -p /home/$dir

  let num++

done

菜鸟一个,正在慢慢学习中,记录一下