PowerShell Show uniquement répertoire actuel

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