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

2024年11月17日 01:55
有1个网友回答
网友(1):

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