#!/bin/csh -f
#
# This script makes 1 main subdirectory and the tree suspended beneath.
#
# Arguments:
#
#   1 - Name of main subdirectory
#   2 - Number of subdirectories to make

mkdir $1

cd $1

set i=0

while($i<$2)
@ i+=1

mkdir t$i

end

cd ..
