From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 20 May 1998 08:45:52 -0400 From: Russ Cox rsc@plan9.bell-labs.com Subject: [9fans] u9fs and _conform.map Topicbox-Message-UUID: 79070b3a-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19980520124552.tc6IzO5Bh5TDiqs4N_wIHzWo3piCDFH7KZhTcKDzU9o@z> I had a similar problem a couple months ago and solved it with disk space. I copied the entire CD onto a Unix disk and then did something approximately: cat _conform.map | sed 's/^F/f/g;s/^D/d/g' | sort > $HOME/conform.map % cat $HOME/fix #!/bin/sh for i in * do if test -d $i (cd $i; $HOME/fix) done for i in d00* f00* do x=`look $i $HOME/conform.map` mv $i $x done % cd $HOME/plan9cd % $HOME/fix which worked pretty well. A warning: I just typed that shell script on the fly while writing this message. I can't find the one I used when I did it, but that conveys the basic gist.