你如何在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 (jean-paul_blanc@silogix-fr.com)
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 - 用于特殊字符的特殊字符和令牌。
链接地址: http://www.djcxy.com/p/4947.html上一篇: How do you comment out code in PowerShell?
下一篇: PowerShell says "execution of scripts is disabled on this system."