728x90 반응형 PowerShell | Write-Host, Write-Output 차이 1. Write-Host 2. Write-Output 결론 1. Write-Host Write-Host [[-Object] ]# 출력할 문자열 [-NoNewline]# 마지막에 줄바꿈 제거 [-Separator ]# 배열 출력 시, 구분자 [-ForegroundColor ]# 문자열 색깔 [-BackgroundColor ]# 배경 색깔 예제 보기 👇 더보기 $msg = "Hello PowerShell" $seperator = "♬" $arr = "Greetings", "Power", "Shell" Write-Host $msg ` -NoNewline ` -Separator $seperator ` -ForegroundColor Blue ` -BackgroundColor White "==============.. 2022. 7. 7. 이전 1 다음 728x90 반응형