Skip to main content
OnCommand Workflow Automation 5.1
日本語は機械翻訳による参考訳です。内容に矛盾や不一致があった場合には、英語の内容が優先されます。

コメントのガイドライン

共同作成者

OnCommand Workflow Automation ( WFA )用スクリプトでの PowerShell と Perl のコメントに関するガイドラインに注意する必要があります。

PowerShell のコメントを表示します

ガイドライン

1 行のコメントには # 文字を使用します。

# Single line comment
$options=$option.trim();

行末のコメントには # 文字を使用します。

$options=$option.trim(); # End of line
comment

ブロックコメントには、との文字を使用します。

<#
This is
a
block comment
#>
$options=$option.trim();

Perl のコメント

ガイドライン

1 行のコメントには # 文字を使用します。

# 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 コマンドには、コメント化したコードやデッドコードを含めないでください。ただし、テスト目的では、 Plain Old Documentation ( PoD )メカニズムを使用してコードをコメントアウトできます。

=begin comment
	# Set deduplication
	if(defined $Deduplication && $Deduplication eq "enabled")
	{
		$wfaUtil->sendLog("Enabling Deduplication");
	}
=end comment
=cut