#!/bin/bash

cd ~/www/
find . -type f -print0 | xargs -0 chmod 604;
find . -type d -print0 | xargs -0 chmod 705;
cd ~/

exit 0

