INSTALL(1B) | BSD System Compatibility | INSTALL(1B) |
install - (BSD) install files
/usr/ucb/install [-cs] [-g group] [-m mode] [-o owner] file1 file2
/usr/ucb/install [-cs] [-g group] [-m mode] [-o owner] file . . . directory
/usr/ucb/install -d
[-g group] [-m mode]
[-o owner] directory
The install command copies one regular file to a destination file or one or more regular files into a destination directory. It is commonly used within Makefiles to install newly created software components.
If the -d option is present, install creates the named directory, also creating non-existent parent directories. It is not an error if the directory already exists. The -g, -m, and -o options apply to the last pathname component only; attributes are set whether the directory is newly created or not. Parent directories are always created using a default mode of 777 minus umask and default ownerships.
The following options are also accepted:
cp(1), chgrp(1), chmod(1), chown(1), make(1), mkdir(1), strip(1)
4/17/03 | Heirloom Toolchest |