2006-02-08 18:20:43 +08:00
|
|
|
#
|
|
|
|
# Make pwd print out the home directory as a tilde.
|
2006-06-02 06:23:00 +08:00
|
|
|
# Also drop '/private' directories on OS X.
|
2006-02-08 18:20:43 +08:00
|
|
|
#
|
|
|
|
|
2010-09-18 10:18:26 +08:00
|
|
|
switch (uname)
|
2007-09-23 03:07:34 +08:00
|
|
|
|
|
|
|
case Darwin
|
2007-01-16 09:29:18 +08:00
|
|
|
function pwd --description "Print working directory"
|
2006-06-02 06:23:00 +08:00
|
|
|
echo $PWD | sed -e 's|/private||' -e "s|^$HOME|~|"
|
|
|
|
end
|
2007-09-23 03:07:34 +08:00
|
|
|
|
|
|
|
case '*'
|
2007-01-16 09:29:18 +08:00
|
|
|
function pwd --description "Print working directory"
|
2006-06-02 06:23:00 +08:00
|
|
|
echo $PWD | sed -e "s|^$HOME|~|"
|
|
|
|
end
|
2007-09-23 03:07:34 +08:00
|
|
|
|
2006-06-02 06:23:00 +08:00
|
|
|
end
|