diff options
| author | Ron Yorston <rmy@pobox.com> | 2014-01-13 09:11:24 +0000 |
|---|---|---|
| committer | Ron Yorston <rmy@pobox.com> | 2014-01-13 09:11:24 +0000 |
| commit | e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c (patch) | |
| tree | af786c447cae6ca59e195b31fbae442c0b42d198 /coreutils | |
| parent | 215f730e98215bff8dfacafdaa70e4a11395ad53 (diff) | |
| parent | 0f592d7fb94c5887528d0ee24020c2225ab71c28 (diff) | |
| download | busybox-w32-e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c.tar.gz busybox-w32-e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c.tar.bz2 busybox-w32-e6edcba4f2fc20a3e9db75ebe82d7a71094fe17c.zip | |
Merge branch 'busybox' into merge
Conflicts:
include/platform.h
scripts/basic/fixdep.c
Diffstat (limited to 'coreutils')
| -rw-r--r-- | coreutils/Config.src | 3 | ||||
| -rw-r--r-- | coreutils/chown.c | 2 | ||||
| -rw-r--r-- | coreutils/tail.c | 7 |
3 files changed, 6 insertions, 6 deletions
diff --git a/coreutils/Config.src b/coreutils/Config.src index b5701217e..ef14be471 100644 --- a/coreutils/Config.src +++ b/coreutils/Config.src | |||
| @@ -635,12 +635,13 @@ config FEATURE_FANCY_TAIL | |||
| 635 | default y | 635 | default y |
| 636 | depends on TAIL | 636 | depends on TAIL |
| 637 | help | 637 | help |
| 638 | The options (-q, -s, and -v) are provided by GNU tail, but | 638 | The options (-q, -s, -v and -F) are provided by GNU tail, but |
| 639 | are not specific in the SUSv3 standard. | 639 | are not specific in the SUSv3 standard. |
| 640 | 640 | ||
| 641 | -q Never output headers giving file names | 641 | -q Never output headers giving file names |
| 642 | -s SEC Wait SEC seconds between reads with -f | 642 | -s SEC Wait SEC seconds between reads with -f |
| 643 | -v Always output headers giving file names | 643 | -v Always output headers giving file names |
| 644 | -F Same as -f, but keep retrying | ||
| 644 | 645 | ||
| 645 | config TEE | 646 | config TEE |
| 646 | bool "tee" | 647 | bool "tee" |
diff --git a/coreutils/chown.c b/coreutils/chown.c index 1a9127622..cb07bbcbb 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c | |||
| @@ -16,10 +16,10 @@ | |||
| 16 | //usage: "Change the owner and/or group of each FILE to OWNER and/or GROUP\n" | 16 | //usage: "Change the owner and/or group of each FILE to OWNER and/or GROUP\n" |
| 17 | //usage: "\n -R Recurse" | 17 | //usage: "\n -R Recurse" |
| 18 | //usage: "\n -h Affect symlinks instead of symlink targets" | 18 | //usage: "\n -h Affect symlinks instead of symlink targets" |
| 19 | //usage: IF_DESKTOP( | ||
| 19 | //usage: "\n -L Traverse all symlinks to directories" | 20 | //usage: "\n -L Traverse all symlinks to directories" |
| 20 | //usage: "\n -H Traverse symlinks on command line only" | 21 | //usage: "\n -H Traverse symlinks on command line only" |
| 21 | //usage: "\n -P Don't traverse symlinks (default)" | 22 | //usage: "\n -P Don't traverse symlinks (default)" |
| 22 | //usage: IF_DESKTOP( | ||
| 23 | //usage: "\n -c List changed files" | 23 | //usage: "\n -c List changed files" |
| 24 | //usage: "\n -v List all files" | 24 | //usage: "\n -v List all files" |
| 25 | //usage: "\n -f Hide errors" | 25 | //usage: "\n -f Hide errors" |
diff --git a/coreutils/tail.c b/coreutils/tail.c index eab502beb..e352ab627 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c | |||
| @@ -32,15 +32,14 @@ | |||
| 32 | //usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n" | 32 | //usage: "Print last 10 lines of each FILE (or stdin) to stdout.\n" |
| 33 | //usage: "With more than one FILE, precede each with a filename header.\n" | 33 | //usage: "With more than one FILE, precede each with a filename header.\n" |
| 34 | //usage: "\n -f Print data as file grows" | 34 | //usage: "\n -f Print data as file grows" |
| 35 | //usage: IF_FEATURE_FANCY_TAIL( | 35 | //usage: "\n -c [+]N[kbm] Print last N bytes" |
| 36 | //usage: "\n -s SECONDS Wait SECONDS between reads with -f" | ||
| 37 | //usage: ) | ||
| 38 | //usage: "\n -n N[kbm] Print last N lines" | 36 | //usage: "\n -n N[kbm] Print last N lines" |
| 39 | //usage: "\n -n +N[kbm] Start on Nth line and print the rest" | 37 | //usage: "\n -n +N[kbm] Start on Nth line and print the rest" |
| 40 | //usage: IF_FEATURE_FANCY_TAIL( | 38 | //usage: IF_FEATURE_FANCY_TAIL( |
| 41 | //usage: "\n -c [+]N[kbm] Print last N bytes" | ||
| 42 | //usage: "\n -q Never print headers" | 39 | //usage: "\n -q Never print headers" |
| 40 | //usage: "\n -s SECONDS Wait SECONDS between reads with -f" | ||
| 43 | //usage: "\n -v Always print headers" | 41 | //usage: "\n -v Always print headers" |
| 42 | //usage: "\n -F Same as -f, but keep retrying" | ||
| 44 | //usage: "\n" | 43 | //usage: "\n" |
| 45 | //usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)." | 44 | //usage: "\nN may be suffixed by k (x1024), b (x512), or m (x1024^2)." |
| 46 | //usage: ) | 45 | //usage: ) |
