shell命令批量创建文件

[root@w212 test]# for count in `seq 9` ;do echo "$count" > a.2018050$count;done

shell命令批量创建指定格式的文件_shell命令