From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26619 invoked from network); 2 Jan 2002 20:25:58 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 2 Jan 2002 20:25:58 -0000 Received: (qmail 18525 invoked by alias); 2 Jan 2002 20:25:53 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 16387 Received: (qmail 18514 invoked from network); 2 Jan 2002 20:25:52 -0000 To: Zsh Subject: About quoting Message-Id: Date: Wed, 2 Jan 2002 21:38:14 +0100 From: Raúl Núñez de Arenas Coronado Reply-To: Raúl Núñez de Arenas Coronado Sender: Raúl Núñez de Arenas Coronado X-Mailer: DervishD TWiSTiNG Mailer Hello all zshworkers :)) First of all, happy new year :) I have a little problem with quoting. I'm not understanding something about it. With Bash I can do the following: $ export PAGER="/my/pager --flag --otherflag -" $ ls | $PAGER And it works. But under zsh, when doing the redirection above, the shell complains 'no such file or directory: /my/pager --flag...'. The matter here, I think, is that spaces remains quoted when doing the expansion in the redirection. Anyway, I need to quote the spaces in order to define de variable, or zsh will complain then. How can I do this with zsh? Thanks a lot :) Raúl