diff options
author | Jody Bruchon <jody@jodybruchon.com> | 2017-03-30 12:24:56 -0400 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-05 18:51:27 +0200 |
commit | 19578b4edf84927705cab33b9e3d39645461c69b (patch) | |
tree | 3e3797921b5c0099ad089f0409d8823842907d25 | |
parent | e7ac7abf06c90e19525484bf3da97fe9b435f185 (diff) | |
download | busybox-w32-19578b4edf84927705cab33b9e3d39645461c69b.tar.gz busybox-w32-19578b4edf84927705cab33b9e3d39645461c69b.tar.bz2 busybox-w32-19578b4edf84927705cab33b9e3d39645461c69b.zip |
Add help text for 'uniq -i'
Signed-off-by: Jody Bruchon <jody@jodybruchon.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/uniq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c index 1c23e1d08..2b62ad3ae 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c | |||
@@ -26,6 +26,7 @@ | |||
26 | //usage: "\n -c Prefix lines by the number of occurrences" | 26 | //usage: "\n -c Prefix lines by the number of occurrences" |
27 | //usage: "\n -d Only print duplicate lines" | 27 | //usage: "\n -d Only print duplicate lines" |
28 | //usage: "\n -u Only print unique lines" | 28 | //usage: "\n -u Only print unique lines" |
29 | //usage: "\n -i Ignore case" | ||
29 | //usage: "\n -f N Skip first N fields" | 30 | //usage: "\n -f N Skip first N fields" |
30 | //usage: "\n -s N Skip first N chars (after any skipped fields)" | 31 | //usage: "\n -s N Skip first N chars (after any skipped fields)" |
31 | //usage: "\n -w N Compare N characters in line" | 32 | //usage: "\n -w N Compare N characters in line" |