zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: zsh-users@sunsite.dk
Subject: Re: Does zsh have an equivalent to the shopt command ?
Date: Thu, 27 Jul 2006 11:17:30 +0100	[thread overview]
Message-ID: <200607271017.k6RAHUF5027640@news01.csr.com> (raw)
In-Reply-To: <96c45c490607262038m39ed9af5nebe437335258ef0b@mail.gmail.com>

Sean wrote:
> I can run sed from the command line ok, and all of the other sed stuff
> in the script works.
> 
> It seems to be something to do with processing these text blocks:
> 
> <<EndVersion
> EndVersion

I have no idea what could be causing that and it doesn't happen on
anyway of the Cygwin versions I've tried.

Is it still the case that

>I am running the windows port of zsh (ver 3.0.5) supplied with unixkit-tiny.

?  I suspect there might be something wrong with this port.  (3.0.5 is
now rather old, but I still don't remember any problem of this kind
in any version I've seen.)

If you don't mind exploring other avenues, you can change

version() { sed -e 's/^	//' <<EndVersion
	TODO.TXT Manager
	Version 1.6.3
	Author:  Gina Trapani (ginatrapani@gmail.com)
	Release date:  5/11/2006
	Last updated:  7/6/2006
	License:  GPL, http://www.gnu.org/copyleft/gpl.html
	More information and mailing list at http://todotxt.com
EndVersion
    exit 1
}

to

version() { sed -e 's/^	//' <<<"\
	TODO.TXT Manager
	Version 1.6.3
	Author:  Gina Trapani (ginatrapani@gmail.com)
	Release date:  5/11/2006
	Last updated:  7/6/2006
	License:  GPL, http://www.gnu.org/copyleft/gpl.html
	More information and mailing list at http://todotxt.com"
    exit 1
}

This ought to work, since it relies on basic shell parsing rather
than a special chunk of I/O.  Note, however, that it's non-standard.

-- 
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


  parent reply	other threads:[~2006-07-27 10:21 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <96c45c490607220357h2c841b20q506de061f0e6f43b@mail.gmail.com>
     [not found] ` <200607221508.k6MF8W0w002651@pwslaptop.csr.com>
2006-07-24  7:44   ` Sean
2006-07-24 10:01     ` Peter Stephenson
2006-07-24 11:23       ` Sean
2006-07-24 11:35         ` Lloyd Zusman
2006-07-24 11:38         ` Peter Stephenson
2006-07-27  3:38           ` Sean
2006-07-27  9:18             ` Lloyd Zusman
2006-07-27 15:12               ` john_oshea
2006-07-28  0:25               ` Sean
2006-07-27 10:17             ` Peter Stephenson [this message]
2006-07-19 16:44 Sean
2006-07-19 18:06 ` Jean-Rene David
2006-07-20  9:47   ` Peter Stephenson
2006-07-22  2:16     ` Sean
2006-07-22 10:36       ` 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=200607271017.k6RAHUF5027640@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).