Powershell-do-while-loop

提供:Dev Guides
2020年6月23日 (火) 04:04時点におけるMaintenance script (トーク | 投稿記録)による版 (Imported from text file)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

Powershell-Do..While Loop

次のスクリプトは、doを示しています。 whileループ

> $array = @("item1", "item2", "item3")
$counter = 0;

do {
   $array[$counter]
   $counter += 1
} while($counter -lt $array.length)

item1
item2
item3