Only hide /private directories in pwd function under OS X

darcs-hash:20060601222300-ac50b-b08a9425d33cf41d60aa0a42edffa32f521fc2a3.gz
This commit is contained in:
axel 2006-06-02 08:23:00 +10:00
parent 0602044723
commit 7c016c56e3

View File

@ -1,7 +1,14 @@
# #
# Make pwd print out the home directory as a tilde. # Make pwd print out the home directory as a tilde.
# Also drop '/private' directories on OS X.
# #
function pwd -d (N_ "Print working directory") if test (uname) = Darwin
echo $PWD | sed -e 's|/private||' -e "s|^$HOME|~|" function pwd -d (N_ "Print working directory")
end 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