PowerShell Show только текущий каталог

function prompt {
  $p = Split-Path -leaf -path (Get-Location)
  "$p> "
}
Excited Eel