mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 06:24:01 +00:00
8 lines
157 B
Fish
8 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
|