zsh-workers
 help / color / mirror / code / Atom feed
From: Eric Blake <ebb9@byu.net>
To: zsh-workers@sunsite.dk
Subject: Re: cd bugs
Date: Tue, 14 Jul 2009 22:30:33 +0000 (UTC)	[thread overview]
Message-ID: <loom.20090714T222350-609@post.gmane.org> (raw)
In-Reply-To: <loom.20090714T205419-391@post.gmane.org>

Eric Blake <ebb9 <at> byu.net> writes:

> 
> POSIX requires cd to give output if a nonempty entry in CDPATH played a role,
> or if 'cd -' was used.  Therefore, this line demonstrates two zsh bugs:
> 
> $ zsh -c 'emulate -R sh; cd /tmp; mkdir -p d; CDPATH=.; cd d; cd -; rmdir d'
> $ bash -c 'cd /tmp; mkdir -p d; CDPATH=.; cd d; cd -; rmdir d'
> /tmp/d
> /tmp
> $
> 
> while bash was correct in printing the absolute name of d and its parent.

Another bug - POSIX requires that CDPATH be searched prior to ., regardless of
whether CDPATH contains an explicit . or an empty entry.  Therefore, this is
another example where bash is right.  But I think the zsh native behavior of
favoring . over CDPATH if CDPATH does not include . is a little more intuitive,
so this may warrant the addition of a new shell option (POSIX_CD?) that defaults
to off in zsh mode but defaults to on in sh mode for POSIX compliance.

$ zsh -c 'emulate -R sh; cd /tmp; mkdir -p a/b b; CDPATH=a; cd b; /bin/pwd'
/tmp/b
$ bash -c 'cd /tmp; mkdir -p a/b b; CDPATH=a; cd b; /bin/pwd'
/tmp/a/b
/tmp/a/b
$ cd /tmp; rm -Rf a b
$

-- 
Eric Blake



  reply	other threads:[~2009-07-14 22:31 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-14 21:59 Eric Blake
2009-07-14 22:30 ` Eric Blake [this message]
2009-07-19 19:00   ` Peter Stephenson
2009-07-15  3:28 ` Eric Blake
2009-07-15  8:45   ` Peter Stephenson
2009-07-21  9:22 ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=loom.20090714T222350-609@post.gmane.org \
    --to=ebb9@byu.net \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).