#!/bin/sh
find "$@" -type d | xargs -d'\n' chmod go-rwx
find "$@" -type f | xargs -d'\n' chmod go-rwx,u-x
