协慌网

登录 贡献 社区

你如何在 PowerShell 中注释掉代码?

你如何在 PowerShell(1.0 或 2.0)中注释掉代码?

答案

在 PowerShell V1 中,只有#才能在评论后生成文本。

# This is a comment in Powershell

在 PowerShell V2 中, <# #>可用于块注释,更具体地用于帮助注释。

#REQUIRES -Version 2.0

<#
.SYNOPSIS
    A brief description of the function or script. This keyword can be used
    only once in each topic.
.DESCRIPTION
    A detailed description of the function or script. This keyword can be
    used only once in each topic.
.NOTES
    File Name      : xxxx.ps1
    Author         : J.P. Blanc ([email protected])
    Prerequisite   : PowerShell V2 over Vista and upper.
    Copyright 2011 - Jean Paul Blanc/Silogix
.LINK
    Script posted over:
    http://silogix.fr
.EXAMPLE
    Example 1
.EXAMPLE
    Example 2
#>
Function blabla
{}

有关.SYNOPSIS.*更多说明,请参阅about_Comment_Based_Help

备注:这些函数注释由Get-Help CmdLet 使用,可以放在关键字Function之前,也可以放在代码本身之前或之后的{}内。

你使用这样的哈希标记

# This is a comment in Powershell

维基百科有一个很好的页面,可以跟踪如何用几种流行语言进行评论

http://en.wikipedia.org/wiki/Comparison_of_programming_languages_(syntax)#Comments

这是#

有关特殊字符,请参阅PowerShell - 特殊字符和标记