由于无法安装各种精美的查找和替换工具,我需要使用 Windows Server 2008 的命令行在文本文件中查找和替换字符串。
我该怎么做?
例子:
text.md
Hello world!
改成:
text.md
Hello everyone!
我正在寻找类似的东西:
for /f %%A in (text.md) do (
set "line=%%A"
if defined line (
// and here the replacement
) ELSE echo.
)