mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-21 03:37:26 +08:00
8 lines
161 B
Fish
8 lines
161 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
|