Powershell 의 Prompt는 기본적으로 PS {현재경로}> 로 되어 있다.
이 모양은 Powershell 에서 명령을 수행하고 Prompt 라는 Function을 수행한 결과이다.
믿기지 않는 다면 다음 명령으로 확인 해 보자.
Get-Command prompt
다음과 같이 Fuction임을 확인 할 수 있을 것이다.
CommandType Name Definition ----------- ---- ---------- Function prompt $(if (test-path variable:/PSDebugCon...
Definition을 자세히 보면 다음과 같다.
$( if (test-path variable:/PSDebugContext) { '[DBG]: ' } else { '' } ) + 'PS ' + $(Get-Location) + $( if ($nestedpromptlevel -ge 1) { '>>' } ) + '> '
위의 코드가 Powershell의 Prompt를 쓰는 것이다.
그러므로 똑같은 이름의 Prompt Function을 만들면 직접 만든 Prompt를 사용 할 수 있다.
예를 들어 PS 라는 문자 대신에 자신의 Username 을 넣고 싶다면
Function Prompt{ $( if (test-path variable:/PSDebugContext) { '[DBG]: ' } else { '' } ) + $Env:USERNAME + ' ' + $(Get-Location) + $( if ($nestedpromptlevel -ge 1) { '>>' } ) + '> ' }
사용자 이름이 잘 보인다.
한가지만 더 해보자, 응용하면 더욱 재미 있게 쓸 수 있다. 꼭 Prompt 만 변경 할수 있다고 생각 하지 말자 $host.UI 를 이용하여 Window Title 을 현재 경로로 할 수도 있다.
function Prompt { $Colors = [System.Enum]::GetValues([System.ConsoleColor]) $Color = $Colors[$(Get-Random -Minimum 0 -Max ($Colors.Count))] Write-Host -ForegroundColor $Color "PS" -NoNewline Write-Host -NoNewLine " $(Get-Location)> " $host.UI.RawUI.WindowTitle = "$(Get-Location)" "`b" }
재미 삼아 PS 글자의 색을 Random 하게 넣어 봤는데 별로 이쁘지도 않고 멍청해 보인다.