PowerShell : 입력 & 출력
- 간단한 입력 $input = Read-Host "입력해줘~" - 간단한 출력 Write-Host "출력해줘~" - 출력값 색 바꾸기 Write-Host "출력해줘~" -foregroundcolor green Write-Host "출력해줘~" -backgroundcolor green - 변경 가능한 색 목록 Black, DarkBlue, DarkGreen, DarkCyan, DarkRed, DarkMagenta, DarkYellow, Gray, DarkGray, Blue, Green, Cyan, Red, Magenta, Yellow, White Write-Host (Microsoft.PowerShell.Utility) The Write-Host cmdlet customizes output. You ca..