Posts Tagged ‘chmod’

execve – execute program
USAGE
#include <unistd.h>

int execve(const char *filename, char *const argv[],
char *const envp[]);

DESCRIPTION
execve() executes the program [...]

Saturday, August 29th, 2009 at 00:48 | Comments Off
Categories: E

chmod – change file access permissions
USAGE
chmod [OPTION]… MODE[,MODE]… FILE…
chmod [OPTION]… OCTAL-MODE FILE…
chmod [OPTION]… –reference=RFILE FILE…

DESCRIPTION
This manual page documents the GNU version of chmod. chmod changes the
[...]

Wednesday, August 26th, 2009 at 22:26 | Comments Off
Categories: c
Tags:

chacl – change the access control list of a file or directory
USAGE
chacl acl pathname…
chacl -b acl dacl pathname…
chacl -d dacl pathname…
chacl -R pathname…
[...]

Wednesday, August 26th, 2009 at 22:23 | Comments Off
Categories: c

access – check user’s permissions for a file
USAGE
#include <unistd.h>

int access(const char *pathname, int mode);

DESCRIPTION
access() checks whether the process would be allowed to read, write or
test for [...]

Tuesday, August 25th, 2009 at 23:11 | Comments Off
Categories: A
TOP