주제
for, foreach 사용해서 1 에서 10 까지 출력하기
방법
비교연산자 -le: 작거나 같음
for($i=1; $i -le 10; $i++) {
Write-Host("i="+$i)
}
foreach($i in 1..10) {
Write-Host("i="+$i)
}
실행
Powershell 콘솔창에서 실행한다.
# for
PS D:\>
>> for($i=1; $i -le 10; $i++) {
>>
>> Write-Host("i="+$i)
>> }
i=1
i=2
i=3
i=4
i=5
i=6
i=7
i=8
i=9
i=10
PS D:\>
# foreach
PS D:\>
>> foreach($i in 1..10) {
>>
>> Write-Host("i="+$i)
>>
>> }
i=1
i=2
i=3
i=4
i=5
i=6
i=7
i=8
i=9
i=10
관련글
2022.12.13 - [etc/Powershell] - [Powershell] 별칭(Alias) 확인하기 - Get-Alias
출처
마이크로소프트 문서
for
about_For
https://docs.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_for?view=powershell-7.2
비교연산자
about_comparison_operators
https://docs.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-7.2
foreach
about_Foreach
https://docs.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_foreach?view=powershell-7.2
728x90
'etc > Powershell' 카테고리의 다른 글
[Powershell] 프롬프트(창모드) - 포스트 잇 전체 화면으로 보기 (0) | 2022.03.13 |
---|---|
[Powershell] 데이터 결과 가져올때 컬럼 헤더(항목명) 제거하기 - Select-Object (0) | 2022.03.11 |
[Powershell] 반올림 사용하기 Round - [Math], 사용 예제 (0) | 2022.01.13 |
[Powershell] if문 조건에서 null 확인하기 (0) | 2021.11.17 |
[Powershell] 에러: 파일을 로드할 수 없습니다. 보안 오류 - PSSecurityException, UnauthorizedAccess (0) | 2021.11.15 |