#!/bin/sh # upload.sh -- Unzip upload.zip and set permissions on www directory # v1.0 05-Dec-2000 JPV # v1.1 24-Jan-2001 Removed pushd & popd as didn't work and not needed. # Let's not mess with the www symlink, just cd in, then go to it... cd www find . -type f -exec chmod 604 {} \; find . -type d -exec chmod 705 {} \;