diff options
author | Denys Vlasenko | 2014-01-09 17:52:13 +0100 |
---|---|---|
committer | Denys Vlasenko | 2014-01-09 17:52:13 +0100 |
commit | 16ca379b55eb5dc1cacfaabf4ca026c49fb516bd (patch) | |
tree | 4d21f5867960b6a823436d612fd08a8bb72a4c07 | |
parent | 6eb0cbe07e5c2f3131c2d6a5bafd83d2cac20f7d (diff) | |
download | busybox-16ca379b55eb5dc1cacfaabf4ca026c49fb516bd.zip busybox-16ca379b55eb5dc1cacfaabf4ca026c49fb516bd.tar.gz |
chown: fix help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/chown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c index 1a91276..cb07bbc 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -16,10 +16,10 @@ //usage: "Change the owner and/or group of each FILE to OWNER and/or GROUP\n" //usage: "\n -R Recurse" //usage: "\n -h Affect symlinks instead of symlink targets" +//usage: IF_DESKTOP( //usage: "\n -L Traverse all symlinks to directories" //usage: "\n -H Traverse symlinks on command line only" //usage: "\n -P Don't traverse symlinks (default)" -//usage: IF_DESKTOP( //usage: "\n -c List changed files" //usage: "\n -v List all files" //usage: "\n -f Hide errors" |