我想使用cmd在多个文件中的特定行之前插入一个空行。
考虑以下文件:
Apple
Orange
Tree
[One]
Black
预期产出:
Apple
Orange
Tree
[One]
Black
在行[One]
之前需要插入空行。
有人可以帮助使用cmd命令吗?
答案 0 :(得分:0)
您可以尝试使用replacer.bat:
call replacer.bat "e?C:\content.txt" "[One]" "\u000d\u000A[One] Black"
文件名之前的e?
用于评估unicode符号。