Sponsored Content
Full Discussion: file permissions: l
Top Forums UNIX for Dummies Questions & Answers file permissions: l Post 302115674 by blowtorch on Thursday 26th of April 2007 10:04:46 AM
Old 04-26-2007
Read this. Explains file permissions in a lot of detail.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

file permissions

Hi! Is there any shell parameter that I can use in my script to check the file-permissions I have in the currect directory!? The history behind is: My script tries to create some log files in the folder and I want to see whether I have enough permissions to do that. And exit in case I dont... (4 Replies)
Discussion started by: mohanprabu
4 Replies

2. UNIX for Advanced & Expert Users

File Permissions

Hi, Though the /etc/profile and .profile have the same umask setting 022, still the directories are created by default with different permissions, how is this possible?? So where should i change what is i want directories to be created with different permissions and files with different... (1 Reply)
Discussion started by: baanprog
1 Replies

3. UNIX for Dummies Questions & Answers

File permissions

Is there any way that I can use the ls command to view the permissions that a group has on a file. I know ls -l file1 will list all the permissions for file1. Would I have to use the following command: ls -l file1 Then grep or sed the output to retrieve what permissions the group has. (5 Replies)
Discussion started by: beginner1
5 Replies

4. HP-UX

To give the "unzip" permissions & "create" file permissions

Hi, I am a Unix Admin. I have to give the permissions to a user for creating new file in a directory in HP-Ux 11.11 system since he cannot able to create a new file in the directory. Thanks in advance. Mike (3 Replies)
Discussion started by: Mike1234
3 Replies

5. Shell Programming and Scripting

file permissions

Hi all, My UNIX box is HP UX - 11.11. I have got a basic doubt. What are the global permissions for a file and directory? I set the mask as 111 in my .profile. When I create a new file, it gets created withe -rw-rw-rw- permissions. A directory is created with drw-rw-rw- permissions. So, i... (7 Replies)
Discussion started by: ranj@chn
7 Replies

6. Shell Programming and Scripting

Retain file permissions when saving .sh file from internet [OS X]

Hello. I have written a bash script that I am sharing with an OS X community I am a member of. The purpose of the script is to execute a series of commands for members without them having to get involved with Terminal, as it can be daunting for those with no experience of it at all. I have renamed... (4 Replies)
Discussion started by: baza210
4 Replies

7. AIX

File Permissions nobody:nobody

AIX 5.3 environment. On the local system, I am sharing a jfs2 filesystem as an exported filesystem. I have many other AIX 5.3 server mounting to this file system and can create, move, copy, ... data to and from this share. Recently, we've run into a problem. When on another system (okay, all... (5 Replies)
Discussion started by: clking
5 Replies

8. Filesystems, Disks and Memory

Regarding File permissions

Hi, I have a shellscript.I want to protect the source code. So I gave 711 permission on the file(owner=rwx,group=x,others=x) but still others are not able to execute it. Please help me in protecting the source code.I don't want others to use any cat or vi command on the script but... (1 Reply)
Discussion started by: bishnu.bhatta
1 Replies

9. Shell Programming and Scripting

ksh; Change file permissions, update file, change permissions back?

Hi, I am creating a ksh script to search for a string of text inside files within a directory tree. Some of these file are going to be read/execute only. I know to use chmod to change the permissions of the file, but I want to preserve the original permissions after writing to the file. How can I... (3 Replies)
Discussion started by: right_coaster
3 Replies

10. Shell Programming and Scripting

Changing file permissions of a file created by another user

Hi, I have used expdp for datapump. The .dmp file is created by the "oracle" user. my requirement is to make a zipped file of this .dmp file. What i am trying to do is change the permissions of this .dmp file from 0640 to 0644 and then do a gzip and zip it. Is there any way i can change... (3 Replies)
Discussion started by: qwertyu
3 Replies
acl_add_perm(3) 					     Library Functions Manual						   acl_add_perm(3)

NAME
acl_add_perm - Adds a permission to a set of permissions belonging to an ACL entry LIBRARY
Security Library (libpacl.a) SYNOPSIS
#include <sys/acl.h> int acl_add_perm( acl_permset_t permset_d, acl_perm_t perm_d); PARAMETERS
Specifies the permissions set of the working storage internal representation of an ACL entry. Specifies the permission to be added to the permission set (a combination of ACL_EXECUTE, ACL_WRITE, and ACL_READ). DESCRIPTION
NOTE: This function is based on Draft 13 of the POSIX P1003.6 standard. The acl_add_perm() function adds the permission specified by perm_d to the permission set referred to by the permset_d parameter. Any per- missions not designated in the perm_d parameter are left unchanged in the ACL entry. An attempt to add a permission already in the permis- sion set is not treated as an error. RETURN VALUES
Upon successful completion, the acl_add_perm() function returns a value of 0 (zero). Otherwise a value of -1 is returned, and errno is set. ERRORS
If any of the following conditions occur, the acl_add_perm() function sets errno to the corresponding value: The perm_d parameter does not contain a valid acl_perm_t value The permset_d parameter does not contain valid file permission bits. RELATED INFORMATION
acl_clear_perm(3),acl_delete_perm(3), acl_get_permset(3), acl_set_permset(3),acl_get_entry(3) Security delim off acl_add_perm(3)
All times are GMT -4. The time now is 03:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy