如何在powershell中分页输出

时间:2017-02-28 14:09:47

标签: powershell

例如,命令

get-help about_commonparameters

输出将直接滚动到底部,每次我必须滚动到顶部才能读取。当输出太长时,是否有任何cmdlet可逐页查看powershell输出?

1 个答案:

答案 0 :(得分:8)

您可以将命令传递给More

get-help about_commonparameters | More

或使用Out-Host -Paging

get-help about_commonparameters | Out-Host -Paging