2006-02-12 13:14:21 +00:00
|
|
|
|
|
|
|
if test (uname) = Darwin
|
2006-03-01 16:53:47 +00:00
|
|
|
function prompt_pwd -d (N_ "Print the current working directory, shortend to fit the prompt")
|
2006-02-12 13:14:21 +00:00
|
|
|
if test "$PWD" != "$HOME"
|
|
|
|
printf "%s" (echo $PWD|sed -e 's|/private||' -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
|
|
|
|
echo $PWD|sed -e 's-.*/[^/]\([^/]*$\)-\1-'
|
|
|
|
else
|
|
|
|
echo '~'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
2006-03-01 16:53:47 +00:00
|
|
|
function prompt_pwd -d (N_ "Print the current working directory, shortend to fit the prompt")
|
2006-02-12 13:14:21 +00:00
|
|
|
if test "$PWD" != "$HOME"
|
|
|
|
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
|
|
|
|
echo $PWD|sed -e 's-.*/[^/]\([^/]*$\)-\1-'
|
|
|
|
else
|
|
|
|
echo '~'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|