zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: zsh-users@sunsite.dk (Zsh users list)
Subject: Re: listing all executables by prefix - solution!
Date: Tue, 16 Apr 2002 14:40:13 +0100	[thread overview]
Message-ID: <9003.1018964413@csr.com> (raw)
In-Reply-To: "Dan Kenigsberg"'s message of "Tue, 16 Apr 2002 15:03:04 +0300." <200204161203.PAA16978@csd.cs.technion.ac.il>

Dan Kenigsberg wrote:
> and something like:
> 
>   function _lap { tmp="${(@f)$(whence -pm $1\*)}"; [[ ! -z $tmp ]] && 
>     ls -l ${=tmp} }
> 
> will produce fewer processes on the way.

Except... see below.

> P.S. I wouldn't know why
> 
>   function _lap { tmp=$(whence -pm $1\*); [[ ! -z $tmp ]] && ls -l ${=tmp} }
> 
> is not as good, but I'm such a shameless newbie, so it is not that surprising
> .

It's not obvious at first sight.  The problem here (and above) is with
spaces.  Both ${=...} and normal $(...) split words on spaces.  So if
you have directories with names like `Program Files' the filename will
be split at that point.  The "${(@f)...}"  stuff makes sure you get the
`whence output', including newlines, verbatim and then splits on the
newlines.  Of course, if you have newlines in your filenames your are
totally screwed, but at least the GUI-masqeurading-as-an-OS I alluded to
before isn't in the habit of using them.

Hence your solution is better written using an array:

function _lap {
  local tmp
  tmp=("${(@f)$(whence -pm $1\*)}")
  (( $#tmp )) && ls -l $tmp
}

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK                          Tel: +44 (0)1223 392070


**********************************************************************
The information transmitted is intended only for the person or
entity to which it is addressed and may contain confidential 
and/or privileged material. 
Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by 
persons or entities other than the intended recipient is 
prohibited.  
If you received this in error, please contact the sender and 
delete the material from any computer.
**********************************************************************


      reply	other threads:[~2002-04-16 13:41 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-15 17:31 listing all executables by prefix? Sven Guckes
2002-04-15 17:56 ` Bart Schaefer
2002-04-15 18:16   ` Peter Stephenson
2002-04-15 19:43   ` listing all executables by prefix - solution! Sven Guckes
2002-04-16 12:03     ` Dan Kenigsberg
2002-04-16 13:40       ` Peter Stephenson [this message]

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=9003.1018964413@csr.com \
    --to=pws@csr.com \
    --cc=zsh-users@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).