Chgrp,
Umask,
Chown,
Stat,
Symlink,
Sticky,
Chflags,
Find,
Setmode,
Fts_open,
Install,
Chmod CHMOD(1) - General Commands Manual # CHMOD(1) - General Commands Manual
NAME # chmod - change file modes
SYNOPSIS # chmod [-h] [-R [-H | -L | -P]] mode file …
DESCRIPTION # The chmod utility modifies the file mode bits of the listed files as specified by the mode operand. The mode of a file dictates its permissions, among other attributes.
The options are as follows:
-H
If the -R option is also specified, symbolic links on the command line are followed.
...
Whereis,
Ls,
Stat,
Locate,
Symlink,
Chmod,
Chflags,
Glob,
Fts_open,
Xargs,
Which,
Find FIND(1) - General Commands Manual # FIND(1) - General Commands Manual
NAME # find - walk a file hierarchy
SYNOPSIS # find [-dHhLXx] [-f path] path … [expression]
DESCRIPTION # find recursively descends the directory tree for each path listed, evaluating an expression (composed of the “primaries” and “operators” listed below) in terms of each file in the tree. In the absence of an expression, -print is assumed. If an expression is given, but none of the primaries -delete, -exec, -execdir, -ls, -ok, -print, or -print0 are specified, the given expression is effectively replaced by ( given expression ) -print.
...
INSTALL(1) - General Commands Manual # INSTALL(1) - General Commands Manual
NAME # install - install binaries
SYNOPSIS # install [-bCcDdFpSs] [-B suffix] [-f flags] [-g group] [-m mode] [-o owner] source … target …
DESCRIPTION # The source file(s) are copied to the target file or directory. If the target file already exists, it is either renamed to file.old if the -b option is given or overwritten if permissions allow.
...
LS(1) - General Commands Manual # LS(1) - General Commands Manual
NAME # ls - list directory contents
SYNOPSIS # ls [-1AaCcdFfgHhikLlmnopqRrSsTtux] [file …]
DESCRIPTION # For each operand that names a file of a type other than directory, ls displays its name as well as any requested, associated information. For each named directory, ls displays the names of files contained within that directory, as well as any requested, associated information.
...
MKDIR(1) - General Commands Manual # MKDIR(1) - General Commands Manual
NAME # mkdir - make directories
SYNOPSIS # mkdir [-p] [-m mode] directory …
DESCRIPTION # The mkdir utility creates the directories named as operands, in the order specified, using mode rwxrwxrwx (0777) as modified by the current umask(2).
The options are as follows:
-m mode
Set the file permission bits of the newly created directory to mode. The mode argument can be in any of the formats specified to the chmod(1) utility.
...
MKNOD(8) - System Manager’s Manual # MKNOD(8) - System Manager’s Manual
NAME # mknod - make device special files
SYNOPSIS # mknod [-m mode] name b|c major minor
mknod [-m mode] name p
DESCRIPTION # The mknod command creates device special files. Normally the shell script /dev/MAKEDEV is used to create special files for commonly known devices; it executes mknod with the appropriate arguments and can make all the files required for the device.
...
MOUNT_MSDOS(8) - System Manager’s Manual # MOUNT_MSDOS(8) - System Manager’s Manual
NAME # mount_msdos - mount an MS-DOS file system
SYNOPSIS # mount_msdos [-9ls] [-g group] [-m mask] [-o options] [-u user] special node
DESCRIPTION # The mount_msdos command attaches the MS-DOS file system residing on the device special to the global file system namespace at the location indicated by node. This command is invoked by mount(8) when using the syntax
...
Chgrp,
MD5Init,
RMD160Init,
Stat,
SHA256Init,
Chown,
Chmod,
Cksum,
SHA1Init,
Fts_open,
Hier,
Md5,
Mtree MTREE(8) - System Manager’s Manual # MTREE(8) - System Manager’s Manual
NAME # mtree - map a directory hierarchy
SYNOPSIS # mtree [-cdeilnqrtUux] [-f spec] [-K keywords] [-k keywords] [-p path] [-s seed]
DESCRIPTION # The utility mtree compares the file hierarchy rooted in the current directory against a specification read from the standard input. Messages are written to the standard output for any files whose characteristics do not match the specification, or which are missing from either the file hierarchy or the specification.
...
SASYNCD.CONF(5) - File Formats Manual # SASYNCD.CONF(5) - File Formats Manual
NAME # sasyncd.conf - configuration file for sasyncd
DESCRIPTION # sasyncd.conf is the configuration file for the sasyncd(8) daemon.
The current line can be extended over multiple lines using a backslash (’\’). Comments can be put anywhere in the file using a hash mark (’#’), and extend to the end of the current line. Care should be taken when commenting out multi-line text: the comment is effective until the end of the entire block.
...
SCRIPT(7) - Miscellaneous Information Manual # SCRIPT(7) - Miscellaneous Information Manual
NAME # script - interpreter script execution
DESCRIPTION # The system is capable of treating a text file containing commands intended for an interpreter, such as sh(1) or awk(1), as an executable program.
An “interpreter script” is a file which has been set executable (see chmod(2)) and which has a first line of the form:
#! pathname [argument]
...