> ...unfortunately, the SUP scanner treats files as "changed" if the ctime
> changes ... and just recursively chmod'ing the files will update the ctime
> on all of them :-/
find ${dir} ! -perm -0444 | xargs chmod a+r
should probably do what you want...
cgd