如何创建可将十个不同文本文件中的数据复制到一个文本文件中的批处理脚本,例如:
test1.txt
test2.txt
test3.txt
test4.txt
将数据复制到一个文本文件中:
final.txt = test1.txt
test2.txt
test3.txt
test4.txt
答案 0 :(得分:1)
您不需要批处理文件,copy
命令可以自行完成所有操作:
copy test1.txt + text2.txt + ... +testN.txt final.txt
或者:
copy "test*.txt" final.txt
答案 1 :(得分:0)
只需使用类型命令
type test1.txt test2.txt test3.txt text4.txt > final.txt
文件内容将写入final.txt文件,而文件名将写入stderr(因此仍会出现在命令提示符窗口中)。如果你不想要stderr输出那么
( type test1.txt & type test2.txt & type test3.txt & type text4.txt ) > final.txt
无论哪种方式,final.txt的内容都是所有输入文件的连接。