HP3000-L Archives

October 1999, Week 2

HP3000-L@RAVEN.UTC.EDU

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Subject:
From:
Reply To:
Date:
Thu, 14 Oct 1999 07:28:07 -0700
Content-Type:
text/plain
Parts/Attachments:
text/plain (24 lines)
Gary writes:

>I recall there was a discussion regarding posix permissions and that they
>were incorrectly set in 5.5.

You might try the threaded archives at Bruce Toback's site (optc.com).

Access Jazz as http://jazz.external.hp.com:81 temporarily.

Or, you can use my quick fix:

I've found in most instances, that permissions for the creator and
group are correct, but not so for "other". If that's the case, then
the following quick script works:

chmod -R o+r *
find . -perm -u+x -exec chmod o+x {} \;
                                 ^  ^
     (there's a blank before and after the braces)

The first line sez, add read permission for "other" to all files.
The second line finds all files that have execute permission set
for the owner and adds execute permission to "other".

ATOM RSS1 RSS2