diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-06 00:30:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-06 00:30:51 +0000 |
commit | 4bea32abb5d25e3b83047c22fd3f4e8fae2479cd (patch) | |
tree | c8aad7a8b8c573c2421b7fb3e58fdd00a3c1fe9b /chown.c | |
parent | 2b69c40e8060934c115922c012737bd471956f09 (diff) | |
download | busybox-w32-4bea32abb5d25e3b83047c22fd3f4e8fae2479cd.tar.gz busybox-w32-4bea32abb5d25e3b83047c22fd3f4e8fae2479cd.tar.bz2 busybox-w32-4bea32abb5d25e3b83047c22fd3f4e8fae2479cd.zip |
latest and greatest.
Diffstat (limited to 'chown.c')
-rw-r--r-- | chown.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,10 +31,10 @@ static int chownApp; | |||
31 | static char* invocationName=NULL; | 31 | static char* invocationName=NULL; |
32 | 32 | ||
33 | 33 | ||
34 | const char chgrp_usage[] = "[OPTION]... GROUP FILE...\n" | 34 | static const char chgrp_usage[] = "[OPTION]... GROUP FILE...\n" |
35 | "Change the group membership of each FILE to GROUP.\n" | 35 | "Change the group membership of each FILE to GROUP.\n" |
36 | "\n\tOptions:\n" "\t-R\tchange files and directories recursively\n"; | 36 | "\n\tOptions:\n" "\t-R\tchange files and directories recursively\n"; |
37 | const char chown_usage[] = "[OPTION]... OWNER[.[GROUP] FILE...\n" | 37 | static const char chown_usage[] = "[OPTION]... OWNER[.[GROUP] FILE...\n" |
38 | "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" | 38 | "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" |
39 | "\n\tOptions:\n" "\t-R\tchange files and directories recursively\n"; | 39 | "\n\tOptions:\n" "\t-R\tchange files and directories recursively\n"; |
40 | 40 | ||