批处理:如何在同一个txt中,将文件内容批量复制100遍。

2024-11-17 01:55:14
推荐回答(1个)
回答1:

要复制的文件为 a.txt
for /l %%i in (1,1,100) do type a.txt>>aa.txt
move aa.txt a.txt