在命令提示符上您可以通过此操作来创建文本文件:
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
>>
击中 Enter
另一种方法是为此使用"此处的弦"而不是打开引号。
@'
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