From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <63b0fab6be387375b74548fd7a3cf98a@vitanuova.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] v8 shell From: rog@vitanuova.com In-Reply-To: <4cfecdf7a036a48ce135771f8ac3c228@hamnavoe.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Mon, 17 Nov 2003 20:31:14 +0000 Topicbox-Message-UUID: 8dc052bc-eacc-11e9-9e20-41e7f4b1d025 > syscall -c 'echo http://www.foo.baz >[1=3]; cat <[0=3]' open /mnt/webcookies/http 2 it's this kind of scenario that was one of the reasons i put braced-blocks-as-values into the inferno shell. then you can write the above as: syscall -c { echo http://www.foo.baz >[1=3]; cat <[0=3] } open /mnt/webcookies/http 2 and the shell still does your syntax checking for you. it's not a difficult thing to do.