Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Windows 中创建一个简单的批处理脚本,它将获取一个 txt 文件的内容并将其附加到另一个文本文件的末尾
type 命令可用于连接文件。尝试
type file1.txt >> file2.txt
布雷特的回答效果很好。另一种选择是
copy file1.txt + file2.txt /b
您可以通过添加其他文件来使用此语法附加任意数量的文件。
该/b选项可防止<ctrl-Z>文件结束标记在复制后附加到文件末尾。
/b
<ctrl-Z>