mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-05 05:11:15 -03: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
|