PowerShell 缩短提示符路径
缩短显示路径 临时
Function Prompt { "$( ( get-item $pwd ).Name )>" }
全局
文件位置,如果该文件不存在,手动建立一个。
%UserProfile%DocumentsPowerShellMicrosoft.PowerShell_profile.ps1 加入
function prompt {
$p = Split-Path -leaf -path (Get-Location)
"$p> "
}
注意:较新的版本位置为
%UserProfile%DocumentsWindowsPowerShellMicrosoft.PowerShell_profile.ps1