zsh-users
 help / color / mirror / code / Atom feed
From: Ray Andrews <rayandrews@eastlink.ca>
To: zsh-users@zsh.org
Subject: Re: symlink chain.
Date: Sat, 03 Jan 2015 09:14:28 -0800	[thread overview]
Message-ID: <54A82374.1030208@eastlink.ca> (raw)
In-Reply-To: <150102231734.ZM22168@torch.brasslantern.com>

On 01/02/2015 11:17 PM, Bart Schaefer wrote:
> torch% /foo() { print Look, I have a slash. }
> torch% whence -v /foo
> /foo is a shell function
> torch% whence -mv '/fo?'	# won't work with the above change
> /foo is a shell function
>
> PWS's change for -a only works because it happens so late in the algorithm
> that there is nothing left but path to search, and no patterns left to be
> tried.
>
As you say.  The test for the leading slash is obviously a bit of a 
band-aid.  I'd have expected the -m and/or -a code to be able to look at 
a full path without that being any sort of problem--it wouldn't have any 
work to do so it would get the day off, but neither would it force a 
false negative return (rather the way that -s just does nothing when it 
has nothing to do, but it doesn't break anything, either).

All I can say with conviction is that 'whence -m /usr/bin/zsh' should 
not return nothing, because the file exists on the path and is a link to 
an executable and has a legitimate search target string. It should be 
found.  It is pathetic that if I was doing a whole list of whences with 
the -m or -a switches, and then at some point I entered a canonical 
filename (whereas up to that point it was more the pattern search 
thing), I get nothing because, oops, I forgot to remove the -m and/or 
-a.  Or this alias:

     alias wenceslas='whence -mavs'

... doesn't work with a canonical filename :(

Whence is a wrench.  Wrenches should not be hard to understand and they 
shouldn't have any gotchas.  It should take two minutes to know how 
whence works and it should work every time in an intuitive way.  No 
switch should break anything.  To be theatrical, I think if zsh made 
wrenches, they would only tighten metric nuts on Tuesdays and they would 
only loosen fractional nuts on long weekends  *but* you could lay a zsh 
wrench on top of your engine and it would do a full valve job for you 
and do it right (except on Fridays).  Pardon ;-)

BTW, for what it's worth, in one of my wrappers I do this:

    find_count=`whence -ma "$1" | wc -l`

... I'm just using whence at that point to search for and count targets 
which then are given the 3d degree:

    $ i ,v zsh

    Current path:

    /aWorking/Bin
    /usr/local/bin
    /usr/sbin
    /usr/bin
    /sbin
    /bin

    Aliases, Functions, Builtins, Scripts or Binaries: Found 3 matches:

    (1)TYPE: zsh is /usr/local/bin/zsh ->
    /usr/local/bin/zsh-5.0.7-165-g2194da1:
    LISTING: lrwxrwxrwx 1 22 2014-12-30-19:59:18 /usr/local/bin/zsh ->
    zsh-5.0.7-165-g2194da1*
    LINK CHAIN:
    l zsh -> zsh-5.0.7-165-g2194da1
    CONTENT: inode/symlink; charset=binary

    (2)TYPE: zsh is /usr/bin/zsh -> /usr/local/bin/zsh-5.0.7-165-g2194da1:
    LISTING: lrwxrwxrwx 1 28 2014-02-09-19:29:52 /usr/bin/zsh ->
    /etc/alternatives/zsh-usrbin*
    LINK CHAIN:
    l zsh -> /etc/alternatives/zsh-usrbin
    l   zsh-usrbin -> /usr/local/bin/zsh
    l     zsh -> zsh-5.0.7-165-g2194da1
    CONTENT: inode/symlink; charset=binary

    (3)TYPE: zsh is /bin/zsh -> /usr/local/bin/zsh-5.0.7-165-g2194da1:
    LISTING: lrwxrwxrwx 1 21 2014-02-09-19:29:52 /bin/zsh ->
    /etc/alternatives/zsh*
    LINK CHAIN:
    l zsh -> /etc/alternatives/zsh
    l   zsh -> /usr/local/bin/zsh
    l     zsh -> zsh-5.0.7-165-g2194da1
    CONTENT: inode/symlink; charset=binary

... and sometimes I want to give the 3d degree to a single specified file:


     $ i ,v /usr/bin/zsh

... and that's when it bugs me that the 'whence -ma' test fails.  I can 
work around it, but I shouldn't hafta. -m and -a should be smart enough 
to handle a canonical filename.

(BTW The above is my idea of one-stop shopping for information about a 
command ;-)


  reply	other threads:[~2015-01-03 17:14 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-27  4:50 Ray Andrews
2014-12-27 23:38 ` Ray Andrews
2015-01-02 17:03 ` Peter Stephenson
2015-01-02 18:42   ` Ray Andrews
2015-01-02 20:27     ` Lawrence Velázquez
2015-01-02 21:19       ` Ray Andrews
2015-01-02 21:24     ` Peter Stephenson
2015-01-02 21:36       ` Ray Andrews
2015-01-02 21:53       ` Ray Andrews
2015-01-02 22:21         ` Peter Stephenson
2015-01-02 23:42           ` Ray Andrews
2015-01-03  1:08             ` Ray Andrews
2015-01-03  5:03               ` Bart Schaefer
2015-01-03  5:53                 ` Ray Andrews
2015-01-03  7:17                   ` Bart Schaefer
2015-01-03 17:14                     ` Ray Andrews [this message]
2015-01-03 20:02                       ` Bart Schaefer
2015-01-03 21:13                         ` Ray Andrews
2015-01-03 21:42                           ` Peter Stephenson
2015-01-03 22:42                             ` Ray Andrews
2015-01-04  0:41                               ` Bart Schaefer
2015-01-04  3:45                                 ` Ray Andrews
2015-01-04  0:40                           ` Bart Schaefer
2015-01-04  3:35                             ` Ray Andrews
2015-01-04  8:31                               ` Bart Schaefer
2015-01-04 20:49                                 ` Ray Andrews
2015-01-05  1:34                                   ` Bart Schaefer
2015-01-05  2:28                                     ` Lawrence Velázquez
2015-01-05  4:24                                       ` Ray Andrews
2015-01-02 22:22         ` Bart Schaefer

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=54A82374.1030208@eastlink.ca \
    --to=rayandrews@eastlink.ca \
    --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).