#!/bin/csh ############################################################ # Make the tree of directories; at the top level named after # a number, and each number has a-z under them, and each of # those has another a-z under them. ############################################################ foreach d ( 0 1 2 3 4 5 6 7 8 9 ) mkdir $d foreach e ( a b c d e f g h i j k l m n o p q r s t u v w x y z ) mkdir $d/$e foreach f ( a b c d e f g h i j k l m n o p q r s t u v w x y z ) mkdir $d/$e/$f end end end # Also make the catalog file that will hold the list of read CDs touch catalog