windows – PowerShell相当于BASH(etc)’type’命令?

前端之家收集整理的这篇文章主要介绍了windows – PowerShell相当于BASH(etc)’type’命令?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在* nix上,使用BASH(等)通过使用内置的’type’ shell,询问系统命令所在的位置(等):
$type cat
cat is /bin/cat

Microsoft PowerShell 2.0中是否存在等效的“类型”命令?

相当于Get-Command.
PS C:\> Get-Command ls

CommandType     Name       Definition
-----------     ----       ----------
Alias           ls         Get-ChildItem
Application     ls.exe     D:\usr\local\wbin\ls.exe
Application     ls.exe     C:\Program Files (x86)\Git\bin\ls.exe

Windows 10更新:

由于我发布了这个答案,看来Get-Command的行为已经改变了.要包含所有结果(以Un * x的样式),现在我需要传递-All标志,如下所示:

PS C:\> Get-Command -All ls

CommandType     Name                 Version    Source
-----------     ----                 -------    ------
Alias           ls -> Get-ChildItem
Application     ls.exe               0.0.0.0    C:\Program Files (x86)\Git\usr\bin\ls.exe

评论中所述,这不包括“定义”列,就像之前的行为一样.我无法确定添加定义列的命令行参数,但正如@voutasaurus在下面的注释中所指出的,可以使用:

PS C:\> (Get-Command -All ls).Definition
Get-ChildItem
C:\Program Files (x86)\Git\usr\bin\ls.exe

版本信息供参考(我没有与原始答案文本相关的版本信息,但我猜它是Windows 7):

PS C:\> [System.Environment]::OSVersion.Version

Major  Minor  Build  Revision
-----  -----  -----  --------
10     0      15063  0
原文链接:https://www.f2er.com/windows/363266.html

猜你在找的Windows相关文章