diff options
author | Glenn L McGrath | 2003-09-24 03:22:57 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-09-24 03:22:57 +0000 |
commit | eebcc1d98a9901ff69ffb97ba99bccd36666000f (patch) | |
tree | ad1e21191b4aef5ff0c0fa9c30717e77d023cc5d /include/usage.h | |
parent | d72e34c7524a947ba004afff91272c27549b3085 (diff) | |
download | busybox-eebcc1d98a9901ff69ffb97ba99bccd36666000f.zip busybox-eebcc1d98a9901ff69ffb97ba99bccd36666000f.tar.gz |
Add the "install" applet, move get_ug_id to libbb as its used by chown,
chgrp and install.
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index ba8fdde..ba808d3 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1239,6 +1239,18 @@ USAGE_INSMOD_MAP("\t-m\tOutput load map to stdout") \ "\t-x\tdo not export externs\n" +#define install_trivial_usage \ + "[cgmops] [sources] <dest|directory>" +#define install_full_usage \ + "copy files and set attributes\n\n" \ + "Options:\n" \ + "\t-c\tcopy the file, default\n" \ + "\t-g\tset group ownership\n" \ + "\t-m\tset permission modes\n" \ + "\t-o\tset ownership\n" \ + "\t-p\tpreserve date\n" \ + "\t-s\tstrip symbol tables\n" + #define ip_trivial_usage \ "[ OPTIONS ] { address | link | route | tunnel } { COMMAND | help }" #define ip_full_usage \ |