mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
746a602515
darcs-hash:20060710223848-ac50b-ddb52c414fd8b08bd7c515c99cc4e05a3c479c7d.gz
21 lines
616 B
Fish
21 lines
616 B
Fish
|
|
if test (uname) = Darwin
|
|
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|/private||' -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
|
|
echo $PWD|sed -e 's-.*/[^/]\([^/]*$\)-\1-'
|
|
else
|
|
echo '~'
|
|
end
|
|
end
|
|
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 -n -e 's-.*/[^/]\([^/]*$\)-\1-p'
|
|
else
|
|
echo '~'
|
|
end
|
|
end
|
|
end
|
|
|