diff options
author | Matt Kraai | 2000-07-16 20:57:15 +0000 |
---|---|---|
committer | Matt Kraai | 2000-07-16 20:57:15 +0000 |
commit | bf181b9338152759fd56c8009e9a962a84808e7c (patch) | |
tree | e8c416c791c690f661c513340662e4e98ff3464a /chmod_chown_chgrp.c | |
parent | 3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217 (diff) | |
download | busybox-bf181b9338152759fd56c8009e9a962a84808e7c.zip busybox-bf181b9338152759fd56c8009e9a962a84808e7c.tar.gz |
Extract usage information into a separate file.
Diffstat (limited to 'chmod_chown_chgrp.c')
-rw-r--r-- | chmod_chown_chgrp.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c index 156a0a9..c02f2a3 100644 --- a/chmod_chown_chgrp.c +++ b/chmod_chown_chgrp.c @@ -43,29 +43,6 @@ static char *theMode = NULL; #define CHOWN_APP 2 #define CHMOD_APP 3 -static const char chgrp_usage[] = "chgrp [OPTION]... GROUP FILE...\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nChange the group membership of each FILE to GROUP.\n" - "\nOptions:\n\t-R\tChanges files and directories recursively.\n" -#endif - ; -static const char chown_usage[] = - "chown [OPTION]... OWNER[<.|:>[GROUP] FILE...\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nChange the owner and/or group of each FILE to OWNER and/or GROUP.\n" - "\nOptions:\n\t-R\tChanges files and directories recursively.\n" -#endif - ; -static const char chmod_usage[] = - "chmod [-R] MODE[,MODE]... FILE...\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nEach MODE is one or more of the letters ugoa, one of the symbols +-= and\n" - "one or more of the letters rwxst.\n\n" - "\nOptions:\n\t-R\tChanges files and directories recursively.\n" -#endif - ; - - static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { switch (whichApp) { |