From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <660a673d8f91d6c1ce14841874773b94@vitanuova.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] Downloading from the web From: rog@vitanuova.com MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Mon, 11 Nov 2002 16:22:51 +0000 Topicbox-Message-UUID: 1abfe1b6-eacb-11e9-9e20-41e7f4b1d025 > Well, there's always hget, but that's extraordinarily inconvenient for > most things (like when you get some *really huge* URL that you have to > try and transfer to a command line somewhere). there is a simple fix for this, at least: start emu with the -G flag (allow access to the external filesystem).. before doing anything, bind '#U*' /n/local (i.e. the local plan 9 filesystem is accessible in /n/local). in $home/lib/wmsetup (under the inferno root), add this line: bind /n/local/dev/snarf /chan/snarf then cut and paste will work transparently between plan 9 and inferno. ^C and ^V can be used in charon to cut and paste URLs, the contents of text entry boxes, etc. i usually start emu with the following script, which i call wm: #!/bin/rc rfork n echo scroll > /dev/wctl echo -n emucons $pid > /dev/label exec emu -G -g1200x900 $* /dis/sh.dis -c '{ bind -c ''#U*'' /n/local wm/logon -u `{cat /dev/user} sh -i }' hope this helps, cheers, rog.