fish-shell/init/functions/pwd.fish

8 lines
157 B
Fish
Raw Normal View History

#
# Make pwd print out the home directory as a tilde.
#
function pwd -d "Print working directory"
command pwd | sed -e 's|/private||' -e "s|^$HOME|~|"
end