반응형
- For
For($i=0; $i -lt 10; $i++){
Write-Host $i
}
- While
$i=0
While($i -lt 6){
Write-Host $i
$i++
}
- Break
for($i=0; $i -lt 100; $i++)
{
Write-Host $i
if($i -eq 5)
{
break
}
}
반응형
'Windows 10 > PowerShell' 카테고리의 다른 글
PowerShell : Array, 동적 배열 (0) | 2019.06.14 |
---|---|
PowerShell : Switch (0) | 2019.06.14 |
PowerShell : If, ElseIf, Else (0) | 2019.06.14 |
PowerShell : 주석 처리 (0) | 2019.06.14 |
PowerShell : 입력 & 출력 (0) | 2019.06.14 |