diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-09-24 03:22:57 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-09-24 03:22:57 +0000 |
commit | eebcc1d98a9901ff69ffb97ba99bccd36666000f (patch) | |
tree | ad1e21191b4aef5ff0c0fa9c30717e77d023cc5d /include/usage.h | |
parent | d72e34c7524a947ba004afff91272c27549b3085 (diff) | |
download | busybox-w32-eebcc1d98a9901ff69ffb97ba99bccd36666000f.tar.gz busybox-w32-eebcc1d98a9901ff69ffb97ba99bccd36666000f.tar.bz2 busybox-w32-eebcc1d98a9901ff69ffb97ba99bccd36666000f.zip |
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 ba8fdde84..ba808d39a 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1239,6 +1239,18 @@ | |||
1239 | USAGE_INSMOD_MAP("\t-m\tOutput load map to stdout") \ | 1239 | USAGE_INSMOD_MAP("\t-m\tOutput load map to stdout") \ |
1240 | "\t-x\tdo not export externs\n" | 1240 | "\t-x\tdo not export externs\n" |
1241 | 1241 | ||
1242 | #define install_trivial_usage \ | ||
1243 | "[cgmops] [sources] <dest|directory>" | ||
1244 | #define install_full_usage \ | ||
1245 | "copy files and set attributes\n\n" \ | ||
1246 | "Options:\n" \ | ||
1247 | "\t-c\tcopy the file, default\n" \ | ||
1248 | "\t-g\tset group ownership\n" \ | ||
1249 | "\t-m\tset permission modes\n" \ | ||
1250 | "\t-o\tset ownership\n" \ | ||
1251 | "\t-p\tpreserve date\n" \ | ||
1252 | "\t-s\tstrip symbol tables\n" | ||
1253 | |||
1242 | #define ip_trivial_usage \ | 1254 | #define ip_trivial_usage \ |
1243 | "[ OPTIONS ] { address | link | route | tunnel } { COMMAND | help }" | 1255 | "[ OPTIONS ] { address | link | route | tunnel } { COMMAND | help }" |
1244 | #define ip_full_usage \ | 1256 | #define ip_full_usage \ |