2006-02-12 23:14:21 +10:00
|
|
|
if test (uname) = Darwin
|
2007-01-16 11:29:18 +10:00
|
|
|
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
|
2013-06-01 23:02:13 -07:00
|
|
|
echo $PWD | sed -e "s|^$HOME|~|" -e 's|^/private||' -e 's-\([^/.]\)[^/]*/-\1/-g'
|
2006-02-12 23:14:21 +10:00
|
|
|
end
|
|
|
|
else
|
2007-01-16 11:29:18 +10:00
|
|
|
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
|
2013-06-01 23:02:13 -07:00
|
|
|
echo $PWD | sed -e "s|^$HOME|~|" -e 's-\([^/.]\)[^/]*/-\1/-g'
|
2006-02-12 23:14:21 +10:00
|
|
|
end
|
|
|
|
end
|