#!/bin/sh
pubftp=/cdimg/Public_backup_CD/
find $pubftp -type f -exec chmod 444 {} \;
find $pubftp -type d -exec chmod 555 {} \;
