当我使用more
时,最常见的是通过help
,有某些键可以做特殊的事情(q结束more
命令,Enter向下滚动等)。
PowerShell 本身有没有办法获得这些密钥的帮助,还是我需要谷歌搜索?
当我使用more
时,最常见的是通过help
,有某些键可以做特殊的事情(q结束more
命令,Enter向下滚动等)。
PowerShell 本身有没有办法获得这些密钥的帮助,还是我需要谷歌搜索?
more
在 Powerhsell 中只是一个具有以下定义的函数:
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