fish-shell/share/functions/pwd.fish
axel 7c016c56e3 Only hide /private directories in pwd function under OS X
darcs-hash:20060601222300-ac50b-b08a9425d33cf41d60aa0a42edffa32f521fc2a3.gz
2006-06-02 08:23:00 +10:00

14 lines
No EOL
328 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 -d (N_ "Print working directory")
echo $PWD | sed -e 's|/private||' -e "s|^$HOME|~|"
end
else
function pwd -d (N_ "Print working directory")
echo $PWD | sed -e "s|^$HOME|~|"
end
end