diff options
author | Jim Meyering <jim@meyering.net> | 2000-09-30 08:19:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-09-30 08:19:34 +0000 |
commit | 41939d7bfef63b7da65f905db0abac7fdebb803e (patch) | |
tree | 8495e7698fdadd7dca4aead666658d3db8f15b1c | |
parent | e7f9f83fa1e413a7391c599316659a0a41f2b3c8 (diff) | |
download | coreutils-41939d7bfef63b7da65f905db0abac7fdebb803e.tar.xz |
Remove option-describing comment block.
-rw-r--r-- | src/install.c | 45 |
1 files changed, 1 insertions, 44 deletions
diff --git a/src/install.c b/src/install.c index f7ee15e6c..0b1a1c07d 100644 --- a/src/install.c +++ b/src/install.c @@ -15,50 +15,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* Copy files and set their permission modes and, if possible, - their owner and group. Used similarly to `cp'; typically - used in Makefiles to copy programs into their destination - directories. It can also be used to create the destination - directories and any leading directories, and to set the final - directory's modes. It refuses to copy files onto themselves. - - Options: - -g, --group=GROUP - Set the group ownership of the installed file or directory - to the group ID of GROUP (default is process's current - group). GROUP may also be a numeric group ID. - - -m, --mode=MODE - Set the permission mode for the installed file or directory - to MODE, which is an octal number (default is u=rwx,g=rx,o=rx). - - -o, --owner=OWNER - If run as root, set the ownership of the installed file to - the user ID of OWNER (default is root). OWNER may also be - a numeric user ID. - - -c No effect. For compatibility with old Unix versions of install. - - -s, --strip - Strip the symbol tables from installed files. - - -p, --preserve-timestamps - Retain creation and modification timestamps when installing files. - - -d, --directory - Create a directory and its leading directories, if they - do not already exist. Set the owner, group and mode - as given on the command line. Any leading directories - that are created are also given those attributes. - This is different from the SunOS 4.0 install, which gives - directories that it creates the default attributes. - - -D - Like the -d option, but a file is installed, along with the directory. - Useful when installing into a new directory, and the install - process doesn't properly comprehend making directories. - - David MacKenzie <djm@gnu.ai.mit.edu> */ +/* Written by David MacKenzie <djm@gnu.ai.mit.edu> */ #ifdef _AIX #pragma alloca |