powershell中的命令将自由文本输入到文本文件

Command in powershell to enter free text to a text file

我搜索了一下,但似乎找不到任何东西,所以这让我怀疑是否真的存在这样的东西。

但是 powershell 中是否有允许在 powershell 中输入自由文本的命令 window 或者甚至是弹出框,然后最终将文本添加到文本文件中。

感谢任何帮助。

这应该可以满足您的要求:

Read-Host | out-file yourfile.txt -append

如果您想在将输入保存到文件之前处理输入,您可以这样做:

$text = Read-Host
#do stuff
$text | out-file yourfile.txt -append