mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
35dde5de15
darcs-hash:20060208102043-ac50b-4e26615523a6b9528c2ea4768f41ad1b2e1c4a0f.gz
7 lines
157 B
Fish
7 lines
157 B
Fish
#
|
|
# 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
|