#!/bin/sh
# directories created by java will not allow public read
# grant read access to class files with this command

set -x
find classes -type d -exec chmod +r "{}" \;
