将在 get-Childitem -Recurse 期间暂停的 PowerShell 命令管道
PowerShell command pipe line that will pause during get-Childitem -Recurse
我正在审核用户的所有文件内容,并使用 PowerShell 命令获取子项,但希望看到将暂停结果并等待我按任意键继续的选项。
Get-Childitem -递归 |
PowerShell 命令行
在 PowerShell 命令行中,您可以通过 more
或 Out-Host -Paging
管道命令
Get-ChildItem -Recurse | Out-Host -Paging
#Alias version
gci -rec | oh -Paging
每页最后一行显示为:
<SPACE> next page; <CR> next line; Q quit
允许您翻阅输出。
PowerShell 伊势
这个link提供了更多信息,似乎在脚本环境中是不可能的:Out-Host -Paging error "The method or operation is not implemented. " (ISE)
我正在审核用户的所有文件内容,并使用 PowerShell 命令获取子项,但希望看到将暂停结果并等待我按任意键继续的选项。
Get-Childitem -递归 |
PowerShell 命令行
在 PowerShell 命令行中,您可以通过 more
或 Out-Host -Paging
Get-ChildItem -Recurse | Out-Host -Paging
#Alias version
gci -rec | oh -Paging
每页最后一行显示为:
<SPACE> next page; <CR> next line; Q quit
允许您翻阅输出。
PowerShell 伊势
这个link提供了更多信息,似乎在脚本环境中是不可能的:Out-Host -Paging error "The method or operation is not implemented. " (ISE)