From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20686 invoked from network); 3 Apr 2005 11:25:16 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 3 Apr 2005 11:25:16 -0000 Received: (qmail 85248 invoked from network); 3 Apr 2005 11:25:08 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 3 Apr 2005 11:25:08 -0000 Received: (qmail 10994 invoked by alias); 3 Apr 2005 11:24:59 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8655 Received: (qmail 10979 invoked from network); 3 Apr 2005 11:24:59 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 3 Apr 2005 11:24:59 -0000 Received: (qmail 83998 invoked from network); 3 Apr 2005 11:24:59 -0000 Received: from imap.gmx.net (HELO mail.gmx.net) (213.165.64.20) by a.mx.sunsite.dk with SMTP; 3 Apr 2005 11:24:55 -0000 Received: (qmail invoked by alias); 03 Apr 2005 11:24:54 -0000 Received: from 217-68-190-208.cable.primacom.net (EHLO localhost) [217.68.190.208] by mail.gmx.net (mp030) with SMTP; 03 Apr 2005 13:24:54 +0200 X-Authenticated: #4912580 Date: Sun, 3 Apr 2005 13:23:51 +0200 From: Matthias Berndt To: zsh-users@sunsite.dk Subject: Variable Expansion Message-ID: <20050403132351.0204dbfd@localhost> X-Mailer: Sylpheed-Claws 1.0.1 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-Spam-Checker-Version: SpamAssassin 3.0.2 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, score=-2.3 required=6.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.2 X-Spam-Hits: -2.3 Greetings, I think my problem is quite simple, but I'm unable to find a solution. It is based on a bash script and I use the following lines: CLOCKPARAMS="${CLOCKPARAMS} --utc" hwclock --hctosys ${CLOCKPARAMS} The result is: CLOCKPARAMS=' --utc' hwclock --hctosys ' --utc' # --> hwclock error How do I prevent zsh from inserting the quotes in the hwclock-command? I played with some expansionmodifiers - such a 'Q' - but I can't get it to work. Thanks Matthias Berndt