https://www.yuque.com/lengyuezuixue/warh99/odq4hy

    批处理如何实现文本追加内容生成新文件?

    1. 1.txt内容如下
    2. test
    3. test
    4. testtest
    5. testtest
    6. testtest
    7. test
    8. testtest
    9. 2.txt内容如下
    10. 2D354957
    11. 2D543356
    12. 2D504434
    13. 2D355256
    14. 2D593442

    要求:
    把 2.txt的内容逐行追加到1.txt的末尾 追加一次 就生成一个新的txt(以时间命名,或者顺序命名)
    2.txt有多少行就会生成多少新文件

    1. @echo off
    2. set a=1
    3. for /f %%i in (2.txt) do (
    4. type 1.txt>%%i.txt
    5. echo %%i>>%%i.txt
    6. )
    7. pause