From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6810 invoked from network); 25 Oct 2004 10:21:22 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 25 Oct 2004 10:21:22 -0000 Received: (qmail 28023 invoked from network); 25 Oct 2004 10:21:16 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 25 Oct 2004 10:21:16 -0000 Received: (qmail 10593 invoked by alias); 25 Oct 2004 10:20:28 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8112 Received: (qmail 10579 invoked from network); 25 Oct 2004 10:20:27 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 25 Oct 2004 10:20:27 -0000 Received: (qmail 26909 invoked from network); 25 Oct 2004 10:20:27 -0000 Received: from mail36.messagelabs.com (193.109.254.211) by a.mx.sunsite.dk with SMTP; 25 Oct 2004 10:20:12 -0000 X-VirusChecked: Checked X-Env-Sender: okiddle@yahoo.co.uk X-Msg-Ref: server-4.tower-36.messagelabs.com!1098699604!10518031 X-StarScan-Version: 5.2.10; banners=-,-,- X-Originating-IP: [158.234.9.163] Received: (qmail 8560 invoked from network); 25 Oct 2004 10:20:04 -0000 Received: from iris.logica.co.uk (158.234.9.163) by server-4.tower-36.messagelabs.com with SMTP; 25 Oct 2004 10:20:04 -0000 Received: from trentino.logica.co.uk ([158.234.142.61]) by iris.logica.co.uk (8.12.3/8.12.3/Debian -4) with ESMTP id i9PAK30o006947 for ; Mon, 25 Oct 2004 11:20:04 +0100 Received: from trentino.logica.co.uk (localhost [127.0.0.1]) by trentino.logica.co.uk (Postfix) with ESMTP id A714A1FB62 for ; Mon, 25 Oct 2004 12:19:43 +0200 (CEST) X-VirusChecked: Checked X-StarScan-Version: 5.0.7; banners=.,-,- In-reply-to: <20041025000551.GA21212@scowler.net> From: Oliver Kiddle References: <20041024230623.GA3675@infidel.spots.ab.ca> <20041025000551.GA21212@scowler.net> To: zsh-users Subject: Re: Newbie zsh setup warts (history, pipes, export, ...). Date: Mon, 25 Oct 2004 12:19:43 +0200 Message-ID: <6070.1098699583@trentino.logica.co.uk> X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=0.0 required=6.0 tests=none autolearn=no version=2.63 X-Spam-Hits: 0.0 Clint Adams wrote: > > "set | less" works. What's wrong with the grep? > > grep is probably seeing the NUL character in IFS, and assuming. > that the input is "binary". Since you're using GNU grep, you can > specify "grep -a" to override this assumption. Alternatively, specify `typeset -H IFS' in your .zshrc to hide IFS in the output of set. Oliver