概要
PowerShellプロンプトの文字列表示を短くしたい。
サンプルコード
profile.ps1を作成し、下記の処理を記述する
# # 保存先 → C:\Documents and Settings\<ユーザー名>\My Documents\WindowsPowerShell\pfofile.ps1 # function prompt() { "[" + (Split-Path (Get-Location) -Leaf) + "] > " }
PowerShellプロンプトの文字列表示を短くしたい。
# # 保存先 → C:\Documents and Settings\<ユーザー名>\My Documents\WindowsPowerShell\pfofile.ps1 # function prompt() { "[" + (Split-Path (Get-Location) -Leaf) + "] > " }