zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: zsh-users@sunsite.dk
Subject: Re: Script breaking on cd *param
Date: Wed, 06 Dec 2006 12:26:49 +0000	[thread overview]
Message-ID: <200612061226.kB6CQnpu022275@news01.csr.com> (raw)
In-Reply-To: <Xns98917C0D1AAA8zzappergmailcom@80.91.229.5>

zzapper wrote:
> Hi
> The following should try to cd to a subdirectory in the 4 following ways.
> 
> cd param
> cd param*
> cd *param
> cd *param*
> 
> However if it fails on the second the script breaks
> with "no matches found: *param "

You are likely to get some sort of error, possibly from cd, possibly
highly unexpected (try it if param* expands to two files, or not a
directory, for example) unless you actually test the expansion is a
single directory.  So you really need to be more careful.

local str
local -a dirs
for str in param param\* \*param \*param\*; do
  # Expands to all matching directories, else nothing.
  dirs=(${~str}(N/))
  if (( ${#dirs} == 1 )); then
    cd $dirs
    break
  fi
done

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


To access the latest news from CSR copy this link into a web browser:  http://www.csr.com/email_sig.php


  reply	other threads:[~2006-12-06 12:28 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-12-06 12:11 zzapper
2006-12-06 12:26 ` Peter Stephenson [this message]
2006-12-06 13:42   ` zzapper
2006-12-06 13:52     ` 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=200612061226.kB6CQnpu022275@news01.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).