Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 38120 invoked from network); 8 Nov 2007 22:58:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Nov 2007 22:58:24 -0000 Received: (qmail 57509 invoked by uid 500); 8 Nov 2007 22:58:04 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 57404 invoked by uid 500); 8 Nov 2007 22:58:03 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 57341 invoked by uid 99); 8 Nov 2007 22:58:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Nov 2007 14:58:03 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Nov 2007 22:58:48 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id F0B8271423E for ; Thu, 8 Nov 2007 14:57:50 -0800 (PST) Message-ID: <5494656.1194562670983.JavaMail.jira@brutus> Date: Thu, 8 Nov 2007 14:57:50 -0800 (PST) From: "Jason Dillon (JIRA)" To: dev@geronimo.apache.org Subject: [jira] Updated: (GSHELL-25) Sub-shell syntax support In-Reply-To: <4255924.1151300789856.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/GSHELL-25?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jason Dillon updated GSHELL-25: ------------------------------- Fix Version/s: (was: 1.0-alpha-1) 1.0-alpha-2 Priority: Minor (was: Major) > Sub-shell syntax support > ------------------------ > > Key: GSHELL-25 > URL: https://issues.apache.org/jira/browse/GSHELL-25 > Project: GShell > Issue Type: New Feature > Security Level: public(Regular issues) > Components: Core > Reporter: Jason Dillon > Priority: Minor > Fix For: 1.0-alpha-2 > > > Support constructs like: > {noformat} > set a=b ; (set a=c; echo $a); echo $a > {noformat} > This should create 2 shells. and result in: > {noformat} > c > b > {noformat} > Executes as follows: > * set a=b > ** set a=c > ** echo $a > * echo $a > Intenally the sub-shell is delegated to the builtin subshell command. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.