zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@zsh.org
Subject: Re: Running "unset path" breaks PATH despite emulation being enabled
Date: Sun, 10 Sep 2017 16:50:57 -0700	[thread overview]
Message-ID: <170910165057.ZM4703@torch.brasslantern.com> (raw)
In-Reply-To: <20170909223811.mjaoafbhugrijnyb@sinister.lan.codevat.com>

On Sep 9,  3:38pm, Eric Pruitt wrote:
}
} What want is for Z shell to return is the name to the invoked
} interpreter which is what $BASH shows even when $PATH doesn't contain
} Bash.

OK, that's just a little bit trickier.  Here's script equivalent of the 
actual heuristic Bash uses:

  # Set $ZSH the way Bash sets $BASH
  get_ZSH() {
    emulate -L zsh
    if [[ -o login && $ZSH_ARGZERO != /* ]]
    then ZSH=$SHELL
    elif [[ $ZSH_ARGZERO = /* ]]
    then ZSH=$ZSH_ARGZERO
    elif [[ $ZSH_ARGZERO = ./* ]]
    then ZSH=$ZSH_ARGZERO:P
    else
      local -a tname=( $^path/$ZSH_ARGZERO(N[1]) )
      if [[ -z $tname ]]
      then
        if [[ -x $ZSH_ARGZERO ]]
        then ZSH=$ZSH_ARGZERO:P
        else ZSH=$SHELL
        fi
      else
        ZSH=$tname:P
      fi
    fi
  }

This only works if it's executed before any chdir has been done.

For older zsh that don't have the :P modifier, use :A.


  parent reply	other threads:[~2017-09-10 23:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20170908082917.v5j4vczoq75vs5lk@sinister.lan.codevat.com>
     [not found] ` <CAHYJk3RD6p7PwRaZSUbJSAE0Bi6_2+NKLC3MV+32Lh+PmzsAdA@mail.gmail.com>
2017-09-09 21:38   ` Eric Pruitt
2017-09-09 22:25     ` Bart Schaefer
2017-09-09 22:38       ` Eric Pruitt
2017-09-10  9:42         ` Daniel Shahaf
2017-09-10 23:50         ` Bart Schaefer [this message]
2017-09-11  4:39           ` Eric Pruitt
2017-09-10 18:51       ` Chet Ramey

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=170910165057.ZM4703@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@zsh.org \
    /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).