From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16202 invoked from network); 23 Oct 2002 00:09:15 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 23 Oct 2002 00:09:15 -0000 Received: (qmail 898 invoked by alias); 23 Oct 2002 00:08:51 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5457 Received: (qmail 881 invoked from network); 23 Oct 2002 00:08:46 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15797.59506.340615.546994@paullew-ultra.cisco.com> Date: Tue, 22 Oct 2002 17:08:18 -0700 To: zsh-users@sunsite.auc.dk From: Paul Lew Subject: process substitution question X-Mailer: VM 7.07 under Emacs 21.2.1 I have been using the =(cmd) for process substitution and now I have a case where I am not sure how to specify this properly. There is a command which take input file with format: > cmd file:xyz where 'xyz' is the filename. I would like to subsitute the file name 'xyz' above with =(command), i.e., > cmd file:=(command) What is the best way doing this? Thanks in advance.