#!/bin/sh

# Set up the players directories.
test -e players && rm -rf players
mkdir players

# Our list of subdirectories.
set 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
for file
do
	mkdir players/$file
done


