本繁體中文版使用機器翻譯,譯文僅供參考,若與英文版本牴觸,應以英文版本為準。
意見準則
貢獻者
建議變更
您必須瞭解指令碼OnCommand Workflow Automation for the指令碼(WFA)中的PowerShell和Perl註解準則。
PowerShell註解
準則 | 範例 |
---|---|
請使用#字元做為單行註解。 |
# Single line comment $options=$option.trim(); |
使用#字元做為行尾註解。 |
$options=$option.trim(); # End of line comment |
請使用<#和#>字元做為區塊註解。 |
<# This is a block comment #> $options=$option.trim(); |
Perl評論
準則 | 範例 |
---|---|
使用#字元進行單行註解。 |
# convert from MBytes to Bytes my $MaxDirectorySizeBytes = $MaxDirectorySize * 1024 * 1024; |
使用#字元做為行尾註解。 |
my $MaxDirectorySizeBytes = $MaxDirect orySiZe * 1024 * 1024; # convert to Bytes |
在每一行中使用#字元、開頭和結尾處使用空白#、以建立多行註解的註解框線。 |
# # This is a multi-line comment. Perl 5, unlike # Powershell, does not have direct support for # multi-line comments. Please use a '#'in every line # with an empty '#' at the beginning and end to create # a comment border # |
請勿在WFA命令中加入已註解和已失效的程式碼。不過、為了測試目的、您可以使用純舊文件(pod)機制來註解程式碼。 |
=begin comment # Set deduplication if(defined $Deduplication && $Deduplication eq "enabled") { $wfaUtil->sendLog("Enabling Deduplication"); } =end comment =cut |