#! /bin/sh
# change to JML

chown -R "${USER}:jml" "$@"

exec find "$@"    \( -type f -exec chmod u+rw,g+rw,o+r \{\} \; \) \
               -o \( -type d -exec chmod 775 \{\} \; \)

