交换两个文本文件的内容

时间:2014-04-23 12:56:36

标签: batch-file

我正在使用批处理文件,我将这两个txt文件命名为 a.txt包含“hello”和b.txt,其中包含“hi”。

如何交换两个txt文件的内容,使a.txt包含“hi”,b.txt包含“hello”?

1 个答案:

答案 0 :(得分:2)

@echo off
ren a.txt c.txt
ren b.txt a.txt
ren c.txt b.txt

修改

@echo off
ren %1.txt tempfile
ren %2.txt %1.txt
ren tempfile %2.txt

将其另存为swap.bat并将其用作:

swap a.txt b.txt