Date: Thu, 26 Aug 1999 19:03:06 +0200 From: Marcus Brinkmann <[EMAIL PROTECTED]>
On Wed, Aug 25, 1999 at 09:48:58AM +0200, Mark Kettenis wrote: > > # find /mnt -type d | xargs /bin/settrans -a > > might work, but I haven't tested that either. Moreover, it will > startup all translators before shutting them down. Not terribly > efficient. What about: for file in /mnt/* ; do settrans -a $file ; done This should not start the translators, should it? That seems to work fine. Mark

