作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 Powershell 脚本的输出重定向到 txt 文件。
在 Powershell 窗口中,我尝试:
.\script.ps1 > list.txt
.\script.ps1 >& list.txt
Missing file specification after redirection operator.
At line:1 char:21
+ .\script.ps1 > <<<< & list.txt
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : MissingFileSpecification
最佳答案
如果您使用 Write-Host
在 script.ps1 中写入输出(或 [Console]::WriteLine
)您要么需要将它们更改为 Write-Output
或这样做:
powershell.exe -File test.ps1 > out.txt
>
是
Out-File
的语法糖, 他们是一样的东西。
关于powershell - 如何重定向输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9795945/
我是一名优秀的程序员,十分优秀!