Wenn ich in einem PowerShell-Skript Folgendes mache:
$range = 1..100
ForEach ($_ in $range) {
if ($_ % 7 -ne 0 ) { continue; }
Write-Host "$($_) is a multiple of 7"
}
Ich erhalte die erwartete Ausgabe von:
7 is a multiple of 7
14 is a multiple of 7
21 is a multiple of 7
28 is a multiple of 7
35 is a multiple of 7
42 is a multiple of 7
49 is a multiple of 7
56 is a multiple of 7
63 is a multiple of 7
70 is a multiple of 7
77 is a multiple of 7
84 is a multiple of 7
91 is a multiple of 7
98 is a multiple of 7
Wenn ich jedoch eine Pipeline verwenden ForEach-Object
, continue
scheint der Pipeline - Schleife auszubrechen.
1..100 | ForEach-Object {
if ($_ % 7 -ne 0 ) { continue; }
Write-Host "$($_) is a multiple of 7"
}
Kann ich ein continue
ähnliches Verhalten erzielen, während ich noch ForEach-Object ausführe, damit ich meine Pipeline nicht auflösen muss?
foreach
: techotopia.com/index.php/…