mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-12 20:20:49 +08:00
14 lines
340 B
Fish
14 lines
340 B
Fish
#
|
|
# Make pwd print out the home directory as a tilde.
|
|
# Also drop '/private' directories on OS X.
|
|
#
|
|
|
|
if test (uname) = Darwin
|
|
function pwd --description "Print working directory"
|
|
echo $PWD | sed -e 's|/private||' -e "s|^$HOME|~|"
|
|
end
|
|
else
|
|
function pwd --description "Print working directory"
|
|
echo $PWD | sed -e "s|^$HOME|~|"
|
|
end
|
|
end |