我正在使用批处理文件,我将这两个txt文件命名为
a.txt
包含“hello”和b.txt
,其中包含“hi”。
如何交换两个txt文件的内容,使a.txt
包含“hi”,b.txt
包含“hello”?
答案 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