Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> UNIX question....
A quick question for all you Oracle/UNIX people...... I need to create a file
with the
permissions 775 ( rwxrwxr-x ) and I have set the umask to what all the books
recommend.... with no luck.... The end user cant user CHMOD on the file, so I
need
to have the files created as 775. Any ideas would be much appreciated.
Thanks in advance.
$ umask -S
u=rwx,g=rwx,o=rx
$ touch junk
$ ls -l junk
-rw-rw-r-- 1 oracle dba 0 Jun 2 09:49 junk
777
$ umask 002
$ touch junk
$ ls -l junk
-rw-rw-r-- 1 oracle dba 0 Jun 2 09:55 junk
Stephen Palmer
Junior Database Administrator
Photronics Inc.
15 Secor Road
Brookfield, Conn.
203.740.5331
Pager 203-830-0306 or 1-800-706-7109
mailto:spalmer_at_brk.photronics.com
Home Number 203.270.8159
Alpha Pager mailto:spalmer.pager_at_brk.photronics.com
Received on Fri Jun 02 2000 - 10:08:15 CDT