*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: uniq | Section: 1 | Source: OpenBSD | File: uniq.1
UNIQ(1) FreeBSD General Commands Manual UNIQ(1) NAME uniq - report or filter out repeated lines in a file SYNOPSIS uniq [-ci] [-d | -u] [-f fields] [-s chars] [input_file [output_file]] DESCRIPTION The uniq utility reads the standard input comparing adjacent lines and writes a copy of each unique input line to the standard output. The second and succeeding copies of identical adjacent input lines are not written. Repeated lines in the input will not be detected if they are not adjacent, so it may be necessary to sort the files first. The options are as follows: -c Precede each output line with the count of the number of times the line occurred in the input, followed by a single space. -d Only output lines which have duplicates. -f fields Ignore the first fields in each input line when doing comparisons. A field is a string of non-blank characters separated from adjacent fields by blanks, with blanks considered part of the following field. Field numbers are one based, i.e., the first field is field one. -i Regard lower and upper case ASCII characters as identical. -s chars Ignore the first chars characters in each input line when doing comparisons. If specified in conjunction with the -f option, the first chars characters after the first fields fields will be ignored. Character numbers are one based, i.e., the first character is character one. -u Only output lines which are unique. If additional arguments are specified on the command line, the first such argument is used as the name of an input file, the second is used as the name of an output file. A file name of `-' denotes the standard input or the standard output (depending on its position on the command line). ENVIRONMENT LC_CTYPE The character encoding locale(1). It decides which byte sequences form characters and which characters are considered blank. If unset or set to "C", "POSIX", or an unsupported value, each byte is treated as a character, and only space and tab are considered blank. This variable is ignored for case comparisons. Lower and upper case versions of non-ASCII characters are always considered different. EXIT STATUS The uniq utility exits 0 on success, and >0 if an error occurs. SEE ALSO sort(1) STANDARDS The uniq utility is compliant with the IEEE Std 1003.1-2008 ("POSIX.1") specification. The -i option and the use of -c in conjunction with -d or -u are extensions to that specification. The historic +number and -number options have been deprecated but are still supported in this implementation. HISTORY A uniq utility first appeared in Version 3 AT&T UNIX. FreeBSD 14.1-RELEASE-p8 November 2, 2021 FreeBSD 14.1-RELEASE-p8

Navigation Options