gpt4 book ai didi

powershell无法写入换行符

转载 作者:行者123 更新时间:2023-12-04 02:19:36 24 4
gpt4 key购买 nike

"b`nc" | out-file "a.txt"

输出为:

bc

编写包含换行符的字符串的正确方法是什么。

谢谢

最佳答案

Windows 系统使用回车+结束行(\r\n),如下所示:

"b`r`nc" | out-file "c:\temp\a.txt"

如果您想要在多平台上运行的东西,请尝试以下操作:

'b' + [environment]::NewLine + 'c' | out-file "c:\temp\a.txt"

关于powershell无法写入换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41839720/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com