如何在PowerShell(1.0或2.0)中注释掉代码?
当前回答
Here
# Single line comment in PowerShell
<#
--------------------------------------
Multi-line comment in PowerShell V2+
--------------------------------------
#>
其他回答
有一种特殊的方法可以在脚本末尾添加注释:
....
exit
Hi
Hello
We are comments
And not executed
退出后的任何内容都不会执行,并且表现得很像注释。
你可以做:
(Some basic code) # Use "#" after a line and use:
<#
for more lines
...
...
...
..
.
#>
单行注释以散列符号开始,#右边的所有内容将被忽略:
# Comment Here
在PowerShell 2.0及以上版本中,可以使用多行块注释:
<#
Multi
Line
#>
你可以使用块注释将注释文本嵌入到命令中:
Get-Content -Path <# configuration file #> C:\config.ini
注意:因为PowerShell支持制表符补全,所以在注释之前要小心复制和粘贴空格+制表符。
在PowerShell ISE中,您可以按Ctrl+J打开开始剪辑菜单并选择注释块:
Here
# Single line comment in PowerShell
<#
--------------------------------------
Multi-line comment in PowerShell V2+
--------------------------------------
#>
推荐文章
- 问号运算符是关于什么的?
- 如何使用。net 4运行时运行PowerShell ?
- 在Ruby中->运算符叫什么?
- 在PowerShell中重新加载路径
- Jenkins:注释可以添加到Jenkins文件中吗?
- 函数在PowerShell中的返回值
- 在shell脚本中使用$()而不是反引号的好处是什么?
- ASP。NET“特殊”标签
- 如何在PowerShell中输出一些东西
- 调用webrequest, POST参数
- JavaScript错误(Uncaught SyntaxError:意外的输入结束)
- 在Bash中测试非零长度字符串:[-n "$var"]或["$var"]
- 无法加载.ps1,因为在此系统上禁止执行脚本
- Shell脚本for循环语法
- 如何获得正在执行的cmdlet的当前目录