Make sure that the / is only printed once in prompt_pwd function when cwd is root

darcs-hash:20060710223848-ac50b-ddb52c414fd8b08bd7c515c99cc4e05a3c479c7d.gz
This commit is contained in:
axel 2006-07-11 08:38:48 +10:00
parent a41fd8f759
commit 746a602515

View file

@ -12,7 +12,7 @@ else
function prompt_pwd -d (N_ "Print the current working directory, shortend to fit the prompt")
if test "$PWD" != "$HOME"
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
echo $PWD|sed -e 's-.*/[^/]\([^/]*$\)-\1-'
echo $PWD|sed -n -e 's-.*/[^/]\([^/]*$\)-\1-p'
else
echo '~'
end