bash shell循环创建多个文件的小脚本

发布时间:2019-10-20编辑:脚本学堂
使用bash shell的循环语句创建多个文件的脚本,主要使用while与for循环,供有需要的朋友参考学习。

1、用while循环
命令:
 

复制代码 代码示例:
i=1; while [ $i -le 99 ]; do name=`printf "test%02d.txt"  $i`; touch "$name"; i=$(($i+1)); done

2、用for循环和seq命令
命令:
 

复制代码 代码示例:
for i in $(seq 99); do name=$(printf test%02d.txt $i); touch "$name"; done

以上代码均生成test01.txt到test99.txt共99个文件,简单吧。