From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3939 invoked from network); 26 Mar 2006 16:38:08 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,FORGED_RCVD_HELO autolearn=ham version=3.1.1 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 26 Mar 2006 16:38:08 -0000 Received: (qmail 99912 invoked from network); 26 Mar 2006 16:38:02 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 26 Mar 2006 16:38:02 -0000 Received: (qmail 10549 invoked by alias); 26 Mar 2006 16:38:00 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 22387 Received: (qmail 10539 invoked from network); 26 Mar 2006 16:37:59 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 26 Mar 2006 16:37:59 -0000 Received: (qmail 99635 invoked from network); 26 Mar 2006 16:37:59 -0000 Received: from aw.gs (HELO dynamite.narpes.com) (213.250.81.161) by a.mx.sunsite.dk with SMTP; 26 Mar 2006 16:37:58 -0000 Received: from localhost ([127.0.0.1]) by dynamite.narpes.com with esmtp (Exim 4.43) id 1FNYFZ-0000RE-3F for zsh-workers@sunsite.dk; Sun, 26 Mar 2006 16:37:57 +0000 Date: Sun, 26 Mar 2006 16:37:56 +0000 (GMT) From: "A. Wik" To: Zsh hackers list Subject: Quoting =(command) Message-ID: <20060326161218.U67912@dynamite.narpes.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII How do I quote the =() syntax that returns a the name of a temporary file containing the output of ? Example: star is an improved tar program that can take a list of files to archive through the = command-line parameter - in this case, the list is to be generated by the find program: # star -cv f=etc-bak.tar -C / list==(cd / ; find ./etc -newer /tmp/mtime.ref) zsh: parse error near `)' I briefly thought I had found a solution: # echo $(echo =(cd / ; find ./etc -newer /tmp/mtime.ref)) /tmp/zshonheGz However: # cat $(echo =(cd / ; find ./etc -newer /tmp/mtime.ref)) cat: /tmp/zshioLLt3: No such file or directory -aw