Skip to main content
OnCommand Workflow Automation 5.1
本繁體中文版使用機器翻譯,譯文僅供參考,若與英文版本牴觸,應以英文版本為準。

縮排準則

貢獻者

撰寫OnCommand Workflow Automation 適用於還原(WFA)的PowerShell或Perl指令碼時、您必須瞭解縮排準則。

準則 範例

索引標籤等於四個空格。

使用定位點和大括弧來顯示區塊的開頭和結尾。

PowerShell指令碼

if
($pair.length-ne 2)
{
throw "Got wrong input data"
}

Perl指令碼

if
(defined $MaxDirectorySize)
{
# convert from MBytes to Bytes
my $MaxDirectorySizeBytes = $MaxDirectorySize *
1024 * 1024;
}

在作業集或程式碼區塊之間新增空白行。

$options=$option.trim();
$pair=$option.split(" ");
Get-WFAlogger -Info -messages $("split options: "+
$Pair)