dotfiles/shells/bash/lib/prompt.zsh

10 lines
154 B
Bash
Raw Normal View History

2011-10-25 15:05:16 +11:00
function prompt_pwd() {
if osx; then
extended="-E"
else
extended="-re"
fi
echo `pwd|sed -e "s|$HOME|~|"|sed -E "s|([^/])[^/]+/|\1/|g"`
}