Brian Wilson wrote:
> You should be able to do something like this:
> 
> cd /usr/lib/perl5
> find . -type f -exec chmod go+r {} \;
> find . -type d -exec chmod go+rx {} \;
> 
> The first find sets read on all files in the perl library tree.
> The second find sets read and execute on the directories.

better still;

find /usr -type d -perm 700
find /usr -type f -perm 600

and report the miscreants so that the package maintainer may fix his or 
her package

then, one can run

find /usr -type d -perm 700 -exec chmod 755 {} \;
find /usr -type f -perm 600 -exec chmod 644 {} \;

Cheers,
-- 
Morten
_______________________________________________
tsl-discuss mailing list
[email protected]
http://lists.trustix.org/mailman/listinfo/tsl-discuss

Reply via email to