Home | History | Annotate | Download | only in posix

Lines Matching full:file

1 /* chmod.c - Change file mode bits
13 usage: chmod [-R] MODE FILE...
15 Change mode of listed file[s] (recursively with -R).
23 suid/sgid: execute as the user/group who owns the file.
31 chmod u+w file - allow owner of "file" to write to it.
32 chmod 744 file - user can read/write/execute, everyone else read only
62 char **file;
64 for (file = toys.optargs+1; *file; file++) dirtree_read(*file, do_chmod);