From mboxrd@z Thu Jan 1 00:00:00 1970 To: weigelt@metux.de, 9fans@9fans.net Subject: Re: [9fans] command line tool for storing / reading files on venti From: "Russ Cox" Date: Fri, 13 Jun 2008 20:26:39 -0400 In-Reply-To: <20080614000222.GD9621@nibiru.local> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20080614002455.0A03C1E8C3A@holo.morphisms.net> Topicbox-Message-UUID: c064cb88-ead3-11e9-9d60-3106f5b1d025 > BTW: still leaves the problem that lot's of vacfs servers are > started not terminated after use :( no, it doesn't. on plan 9, when the shell script exits, nothing will have vacfs mounted anymore, so vacfs will get an eof on the 9p connection and exit. that's why i put an rfork n in the script. > Well, this doesnt seem to run this way on p9p :( true. i thought you were using plan 9, sorry. if you are using linux and have fuse installed, you can still run something like the script, as long as you are willing to run just one at a time. vacfs -m /vac file.vac cp -R /vac/* . unmount /vac would work, assuming you create a /vac that you have write permission to. you can only run one at a time since there is only one /vac. russ