- PowerShell实战
- (美)亚当·伯特伦
- 1094字
- 2022-06-17 09:58:44
1.4 获取帮助
PowerShell文档本身没有什么特别之处,可是文档和帮助内容集成到语言的方式着实令人佩服。本节将介绍如何在提示符窗口中显示命令的帮助页、如何通过“关于主题”获取关于语言的更多信息,以及如何使用Update-Help命令来更新文档。
1.4.1 显示文档
类似于Linux系统中的man命令,PowerShell提供了help命令和Get-Help cmdlet。如果想知道某个Content cmdlet的作用,可以将命令名称传给Get-Help命令,以获取帮助信息。帮助信息往往分成几部分,包括SYNOPSIS、SYNTAX、DESCRIPTION、RELATED LINKS和REMARKS。这几部分详述了命令的作用、获取更多信息的途径,以及相关命令。Add-Content命令的文档如代码清单1-7所示。
代码清单1-7 Add-Content命令的帮助页
PS> Get-Help Add-Content NAME Add-Content SYNOPSIS Appends content, such as words or data, to a file. --snip--
将命令名称提供给Get-Help可以获得一些帮助信息,但帮助信息中最有用的部分是示例,即指定Examples参数。指定这个参数后将显示不同场景中的真实用例。可以试试用Get-Help CommmandName -Examples获取某个命令的帮助页,大部分内置命令提供了示例,以便你更好地理解命令的作用。例如,可以使用这个命令查看Add-Content cmdlet的用法示例,如代码清单1-8所示。
代码清单1-8 获取Add-Content命令的用法示例
PS> Get-Help Add-Content -Examples NAME Add-Content SYNOPSIS Appends content, such as words or data, to a file. -------------------------- EXAMPLE 1 -------------------------- C:\PS>Add-Content -Path *.txt -Exclude help* -Value "END" Description ----------- This command adds "END" to all text files in the current directory, except for those with file names that begin with "help." --snip--
如果想要获取更多信息,可以将Detailed和Full参数传给Get-Help cmdlet,以全面阐述相应命令的用途。
1.4.2 学习一般主题
除了各个命令的帮助内容,PowerShell的帮助系统还提供了“关于主题”,以便为更宽泛的主题和特定命令提供帮助信息。例如,本章将学习一些PowerShell核心命令,微软为这些命令创建了“关于主题”,从而对这些命令进行整体说明。查看核心命令的“关于主题”的方法是执行Get-Help about_Core_Commands命令,如代码清单1-9所示。
代码清单1-9 PowerShell核心命令的“关于主题”
PS> Get-Help about_Core_Commands TOPIC about_Core_Commands SHORT DESCRIPTION Lists the cmdlets that are designed for use with Windows PowerShell providers. LONG DESCRIPTION Windows PowerShell includes a set of cmdlets that are specifically designed to manage the items in the data stores that are exposed by Windows PowerShell providers. You can use these cmdlets in the same ways to manage all the different types of data that the providers make available to you. For more information about providers, type "get-help about_providers". For example, you can use the Get-ChildItem cmdlet to list the files in a file system directory, the keys under a registry key, or the items that are exposed by a provider that you write or download. The following is a list of the Windows PowerShell cmdlets that are designed for use with providers: --snip--
如果想获取可用“关于主题”的完整列表,可以在Name参数中使用通配符(wildcard)。PowerShell中的通配符是一个星号(*),可代表零个或多个字符。Get-Help命令的Name参数可以使用通配符,如代码清单1-10所示。
代码清单1-10 在Get-Help命令的Name参数中使用通配符
PS> Get-Help -Name About*
在About后面加上通配符后,PowerShell将搜索所有以“About”开头的主题。如果有多个匹配结果,那么PowerShell会显示一个列表,并简述各个主题。如果想要获取某个匹配结果的完整信息,则需要将完整名称直接传给Get-Help命令,如前面的代码清单1-9所示。
虽然Get-Help命令有个Name参数,但是也可以直接将参数值传给-Name,如代码清单1-10所示。这叫作位置参数,即通过参数在命令中的位置来判断参数的值。很多PowerShell命令支持位置参数,这是一种捷径,可以减少输入量。