mirror of https://github.com/bjeanes/dotfiles.git
10 lines
154 B
Bash
10 lines
154 B
Bash
|
function prompt_pwd() {
|
||
|
if osx; then
|
||
|
extended="-E"
|
||
|
else
|
||
|
extended="-re"
|
||
|
fi
|
||
|
|
||
|
echo `pwd|sed -e "s|$HOME|~|"|sed -E "s|([^/])[^/]+/|\1/|g"`
|
||
|
}
|