"在 Powershell 中等效吗?-6ren"> "在 Powershell 中等效吗?-在命令提示符下,您可以通过执行以下操作来创建内联文本文件: copy con file.txt Hello World ^Z 或者: type con > file.txt Hello World ^-6ren">
gpt4 book ai didi

powershell - "copy con"或 "type con > "在 Powershell 中等效吗?

转载 作者:行者123 更新时间:2023-12-02 22:10:51 25 4
gpt4 key购买 nike

在命令提示符下,您可以通过执行以下操作来创建内联文本文件:

copy con file.txt
Hello World
^Z

或者:
type con > file.txt
Hello World
^Z

Powershell 中是否有等效的命令?我上面列出的两个命令都不起作用。

最佳答案

管道内容到 out-file cmdlet 来模拟这一点。

"Hello World" | out-file hello.txt

要获得多行,请打开引号但不要立即关闭它们
"hello
>> is it me you're looking for" | out-file hello2.txt
>>按回车后会出现在第二行

另一种方法是为此使用“here-strings”而不是打开引号。
@'
hello
is it me you're looking for?
I can even use ' @ $blabla etc in here
and no substitutes will be placed
You want var substitutes, use @"..."@ instead of @'...'@
'@ | out-file hello.txt

关于powershell - "copy con"或 "type con > "在 Powershell 中等效吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44723022/

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