2006-02-08 18:20:43 +08:00
|
|
|
#
|
|
|
|
# Make pwd print out the home directory as a tilde.
|
|
|
|
#
|
|
|
|
|
2006-03-02 00:53:47 +08:00
|
|
|
function pwd -d (N_ "Print working directory")
|
2006-05-29 21:07:53 +08:00
|
|
|
echo $PWD | sed -e 's|/private||' -e "s|^$HOME|~|"
|
2006-02-08 18:20:43 +08:00
|
|
|
end
|