aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/pwd.fish
blob: 678fecb4828022e807318a5aba2d3a74cc7f08df (plain)
1
2
3
4
5
6
7
#
# 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