diff options
Diffstat (limited to 'editors/cmp.c')
-rw-r--r-- | editors/cmp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/editors/cmp.c b/editors/cmp.c index f84a56e3e..3a0f5aa4f 100644 --- a/editors/cmp.c +++ b/editors/cmp.c | |||
@@ -10,6 +10,15 @@ | |||
10 | /* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */ | 10 | /* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */ |
11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/cmp.html */ | 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/cmp.html */ |
12 | 12 | ||
13 | //usage:#define cmp_trivial_usage | ||
14 | //usage: "[-l] [-s] FILE1 [FILE2" IF_DESKTOP(" [SKIP1 [SKIP2]]") "]" | ||
15 | //usage:#define cmp_full_usage "\n\n" | ||
16 | //usage: "Compare FILE1 with FILE2 (or stdin)\n" | ||
17 | //usage: "\nOptions:" | ||
18 | //usage: "\n -l Write the byte numbers (decimal) and values (octal)" | ||
19 | //usage: "\n for all differing bytes" | ||
20 | //usage: "\n -s Quiet" | ||
21 | |||
13 | #include "libbb.h" | 22 | #include "libbb.h" |
14 | 23 | ||
15 | static const char fmt_eof[] ALIGN1 = "cmp: EOF on %s\n"; | 24 | static const char fmt_eof[] ALIGN1 = "cmp: EOF on %s\n"; |