я хотел скопировать файлы "scholar (1) .txt" в "scholar (25) .txt") в один файл .txt, используя следующие методы: wikihow: Merge Text (.Txt) файлы в командной строке
for %f in (*.txt) do type "%f" >> output.txt
SU: есть ли способ объединить текстовые файлы с помощью командной строки Windows?
copy *.txt bigfile.txt
также type *.js > all.txt
но все файлы не копируются последовательно:
`C:\..\Documents\New folder>type *.txt >all.txt
scholar (1).txt
scholar (10).txt
scholar (11).txt
scholar (12).txt
scholar (13).txt
scholar (14).txt
scholar (15).txt
scholar (16).txt
scholar (17).txt
scholar (18).txt
scholar (19).txt
scholar (2).txt
scholar (20).txt
scholar (21).txt
scholar (22).txt
scholar (23).txt
scholar (24).txt
scholar (25).txt
scholar (3).txt
scholar (4).txt
scholar (5).txt
scholar (6).txt
scholar (7).txt
scholar (8).txt
scholar (9).txt`