"复制con"或"输入con> "相当于Powershell?

时间:2017-06-23 13:46:40

标签: powershell inline-editing

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

copy con file.txt
Hello World
^Z

或者:

type con > file.txt
Hello World
^Z

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

1 个答案:

答案 0 :(得分:4)

将内容传递到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