使用.bat 文件连接两个文件

使用.bat 文件连接两个文件

我需要一个兼容 Windows 7 和 Windows 10 的 .bat 文件,它将两个文件连接起来

例如

文件1.txt:

hello

文件2.txt:

world

运行批处理脚本后,名为 file3.txt 的新文件将包含以下内容:

hello
world

file1 的内容后应添加一个换行符

答案1

type file1.txt file2.txt > file3.txt

编辑:尝试对换行符部分进行以下操作:

echo. > newline.txt
type file1.txt newline.txt file2.txt > file3.txt
del newline.txt

相关内容