摘要: 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 )) 阅读全文
posted @ 2018-03-05 10:54 小小萤火 阅读(575) 评论(0) 推荐(1)