3
當我使用more
,最常見的通過help
,有一定的鍵是做特別的事情(q結束more
命令,輸入向下滾動等)。在PowerShell中,如何獲得「更多」命令使用方面的幫助?
PowerShell本身有什麼方法可以獲得關於這些密鑰的幫助,還是我需要Google?
當我使用more
,最常見的通過help
,有一定的鍵是做特別的事情(q結束more
命令,輸入向下滾動等)。在PowerShell中,如何獲得「更多」命令使用方面的幫助?
PowerShell本身有什麼方法可以獲得關於這些密鑰的幫助,還是我需要Google?
在Powerhsell more
僅僅是一個定義如下功能:
param([string[]]$paths)
$OutputEncoding = [System.Console]::OutputEncoding
if($paths)
{
foreach ($file in $paths)
{
Get-Content $file | more.com
}
}
else
{
$input | more.com
}
所以在命令行中,你應該能夠做到more.com /?
,看看幫助,在它下面的文字,這就是你正在查找:
If extended features are enabled, the following commands
are accepted at the -- More -- prompt:
P n Display next n lines
S n Skip next n lines
F Display next file
Q Quit
= Show line number
? Show help line
<space> Display next page
<ret> Display next line