用.bat中的PowerShell更改两行代码

发布于 2025-01-18 16:28:33 字数 790 浏览 0 评论 0原文

我一直在关注这篇帖子并且我使用了这段代码在 .bat 中:

powershell -Command "(gc -Raw test.py) -replace 'test = ''lol''`r`nlol = ''test''', 'test1 = ''lol1''`r`nlol2 = ''test2''' | Out-File test2.py"

它确实识别反引号 r 反引号 n 因为 if 替换此文件: 输入图片此处描述

通过此文件: 输入图片这里的描述

我的问题是,在创建的文件中,我有反引号 r 反引号 n 而不是换行符。正常吗?我错过了什么吗?

我还尝试使用 \r\n 而不是反引号 r 反引号 n ,同样的情况发生(它被识别,但在输出文件中有 \r\n 而不是实际的换行符(我使用的是 Windows 11)。

I've been following this post and I've used this code in the .bat:

powershell -Command "(gc -Raw test.py) -replace 'test = ''lol''`r`nlol = ''test''', 'test1 = ''lol1''`r`nlol2 = ''test2''' | Out-File test2.py"

It does recognise backtick r backtick n because if replaces this file:
enter image description here

by this file:
enter image description here

My problem is that in the created file, I have backtick r backtick n instead of linebreaks. Is it normal? Am I missing something?

I also tried using \r\n instead of backticks r backticks n and the same happens (it's recognised but in the output file there is \r\n and not an actual linebreak (I'm on Windows 11).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一口甜 2025-01-25 16:28:33

您需要对逃生序列使用双重报价,请参见 about_special_characters

您要测试的一个示例:

$text = @'
test = 'lol'
lol = 'test'
'@

$text -replace "test = 'lol'\r?\nlol = 'test'", "test1 = 'lol1'`r`nlol2 = 'test2'"

至于您的调用powershell.exe从批处理文件中,我相信这可以使用(您可以使用“^”“进行逃逸) :

powershell -Command "(gc -Raw test.py) -replace "^""test = 'lol'\r?\nlol = 'test'""", """test1 = 'lol1'`r`nlol2 = 'test2'"^"" | Out-File test2.py"

调用cmd和所需的逃逸的所有信用均转到此答案

You need to use double-quotes for escape sequences, see about_Special_Characters.

An example for you to test:

$text = @'
test = 'lol'
lol = 'test'
'@

$text -replace "test = 'lol'\r?\nlol = 'test'", "test1 = 'lol1'`r`nlol2 = 'test2'"

As for your call to powershell.exe from the batch file, I believe this could work (you can use "^"" for escaping):

powershell -Command "(gc -Raw test.py) -replace "^""test = 'lol'\r?\nlol = 'test'""", """test1 = 'lol1'`r`nlol2 = 'test2'"^"" | Out-File test2.py"

All credits on the call to cmd and the required escaping goes to this answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文