From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@9fans.net Subject: Re: [9fans] web plumbing on OS X drawterm From: "Russ Cox" Date: Wed, 16 Jul 2008 08:57:28 -0400 In-Reply-To: <389246c56d6a78a742491c7538382d3d@9srv.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20080716125438.B51571E8C2B@holo.morphisms.net> Topicbox-Message-UUID: e804b25c-ead3-11e9-9d60-3106f5b1d025 > I mostly get to my Plan 9 cpu servers via drawterm from > my OS X laptop these days (9vx soon, once I get a > comfortable environment there). I have a script that > calls drawterm with the right arguments. I just added > this to the script: > mkfifo /tmp/open.fifo > while () {open `{cat open.fifo}} There is a web command in plan9port, so this doesn't need to be OS X specific: mkfifo /tmp/web.fifo while() { web `{cat /tmp/web.fifo} } Russ