aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/pwd.fish
blob: 33c7577d16d8c2525cf46148650ab47cddd17314 (plain)
1
2
3
4
5
6
7
#
# Make pwd print out the home directory as a tilde.
#

function pwd -d (N_ "Print working directory")
	command pwd | sed -e 's|/private||' -e "s|^$HOME|~|"
end