Uniq: Difference between revisions
No edit summary |
|||
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:Uniq}} | {{DISPLAYTITLE:Uniq}} | ||
= | =Author= | ||
Jevgeni Kuzmin, A21 | Jevgeni Kuzmin, A21 | ||
16.11.2016 | 16.11.2016 | ||
[[Uniq:Retsensioon]] Aleksandr Laada A21 | |||
==Description== | ==Description== | ||
Line 16: | Line 18: | ||
==Options== | ==Options== | ||
'''-c''', --count; - Precede each output line with the count of the number of times the line occurred in the input, followed by a single space.<br/> | *'''-c''', --count; - Precede each output line with the count of the number of times the line occurred in the input, followed by a single space.<br/> | ||
'''-d ''', --repeated ; - Only output lines that are repeated in the input.<br/> | *'''-d ''', --repeated ; - Only output lines that are repeated in the input.<br/> | ||
'''-D ''', --all-repeated; - Print all duplicate lines <br/> | *'''-D ''', --all-repeated; - Print all duplicate lines <br/> | ||
delimit-method={none(default),prepend,separate} Delimiting is done with blank lines. <br/> | delimit-method={none(default),prepend,separate} Delimiting is done with blank lines. <br/> | ||
'''-f ''', --skip-fields=N ; - Ignore the first num fields in each input line when doing comparisons. A field is a string of non-blank characters separated from adjacent fields by blanks. Field numbers are one based, i.e., the first field is field one.<br/> | *'''-f ''', --skip-fields=N ; - Ignore the first num fields in each input line when doing comparisons. A field is a string of non-blank characters separated from adjacent fields by blanks. Field numbers are one based, i.e., the first field is field one.<br/> | ||
'''-i ''', --ignore-case ; - Case insensitive comparison of lines.<br/> | *'''-i ''', --ignore-case ; - Case insensitive comparison of lines.<br/> | ||
'''-s ''', --skip-chars=N ; - 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 num fields will be ignored. Character numbers are one based, i.e., the first character is character one.<br/> | *'''-s ''', --skip-chars=N ; - 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 num fields will be ignored. Character numbers are one based, i.e., the first character is character one.<br/> | ||
'''-u ''', --unique ; - Only output lines that are not repeated in the input.<br/> | *'''-u ''', --unique ; - Only output lines that are not repeated in the input.<br/> | ||
'''-w ''', --check-chars=N ; - Compare no more than N characters in lines.<br/> | *'''-w ''', --check-chars=N ; - Compare no more than N characters in lines.<br/> | ||
==Examples== | ==Examples== | ||
Line 65: | Line 67: | ||
This is also a line.<br/> | This is also a line.<br/> | ||
This is also a line.<br/> | This is also a line.<br/> | ||
==Environment== | ==Environment== | ||
Line 84: | Line 82: | ||
==History== | ==History== | ||
A '''<code>uniq</code>''' command appeared in Version 3 AT&T UNIX. | A '''<code>uniq</code>''' command appeared in Version 3 AT&T UNIX. | ||
==Related commands== | ==Related commands== | ||
Line 95: | Line 90: | ||
[http://www.computerhope.com/unix/uuncompr.htm uncompress] — Extract files from compressed archives.<br/> | [http://www.computerhope.com/unix/uuncompr.htm uncompress] — Extract files from compressed archives.<br/> | ||
== | '''NOTES''' | ||
'''<code>uniq</code>''' does not detect repeated lines unless they are adjacent. You may want to sort the input first, or use '''<code>sort -u</code>''' instead of '''<code>uniq</code>'''. | |||
==References== | |||
http://www.thegeekstuff.com/2013/05/uniq-command-examples <br/> | http://www.thegeekstuff.com/2013/05/uniq-command-examples <br/> | ||
https://www.freebsd.org/cgi/man.cgi?query=uniq&sektion=1<br/> | https://www.freebsd.org/cgi/man.cgi?query=uniq&sektion=1<br/> | ||
https://web.archive.org/web/20051028205957/http://www.linuxmanpages.com/man1/uniq.1.php<br/> | https://web.archive.org/web/20051028205957/http://www.linuxmanpages.com/man1/uniq.1.php<br/> | ||
<br/> | http://www.computerhope.com/unix/uuniq.htm<br/> | ||
[[Category: Operatsioonisüsteemide administreerimine ja sidumine]] |
Latest revision as of 13:39, 6 December 2016
Author
Jevgeni Kuzmin, A21
16.11.2016
Uniq:Retsensioon Aleksandr Laada A21
Description
uniq
- report or filter out repeated lines in a file.
The uniq
utility reads the specified input_file comparing adjacent lines, and writes a copy of each unique input line to the output_file. If input_file is a single dash (`-') or absent, the standard input is read. If output_file is absent, standard output is used for 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.
Synopsis
uniq [-c | -d | -u] [-i] [-f num] [-s chars] [input_file [output_file]]
Options
- -c, --count; - Precede each output line with the count of the number of times the line occurred in the input, followed by a single space.
- -d , --repeated ; - Only output lines that are repeated in the input.
- -D , --all-repeated; - Print all duplicate lines
delimit-method={none(default),prepend,separate} Delimiting is done with blank lines.
- -f , --skip-fields=N ; - Ignore the first num fields in each input line when doing comparisons. A field is a string of non-blank characters separated from adjacent fields by blanks. Field numbers are one based, i.e., the first field is field one.
- -i , --ignore-case ; - Case insensitive comparison of lines.
- -s , --skip-chars=N ; - 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 num fields will be ignored. Character numbers are one based, i.e., the first character is character one.
- -u , --unique ; - Only output lines that are not repeated in the input.
- -w , --check-chars=N ; - Compare no more than N characters in lines.
Examples
Let's say we have an eight-line text file, myfile.txt, which contains the following text:
This is a line.
This is a line.
This is a line.
This is also a line.
This is also a line.
This is also also a line.
Here are several ways to run uniq on this file, and the output it creates:
uniq myfile.txt
This is a line.
This is also a line.
This is also also a line.
uniq -c myfile.txt
3 This is a line.
1
2 This is also a line.
1
1 This is also also a line.
uniq -d myfile.txt
This is a line.
This is also a line.
uniq -u myfile.txt
This is also also a line.
uniq -D myfile.txt
This is a line.
This is a line.
This is a line.
This is also a line.
This is also a line.
Environment
The LANG, LC_ALL, LC_COLLATE and LC_CTYPE environment variables affect the execution of uniq
as described in environ(7).
Exit status
The uniq
utility exits 0 on success, and >0 if an error occurs.
Compatibility
The historic +number and -number options have been deprecated but are still supported in this implementation.
Standards
The uniq
utility conforms to IEEE Std 1003.1-2001 (``POSIX.1) as amended by Cor. 1-2002.
History
A uniq
command appeared in Version 3 AT&T UNIX.
Related commands
comm — Compare two sorted files line by line.
pack — Compress files using a Huffman algorithm.
pcat — Print the uncompressed contents of a compressed file.
sort — Sort the lines in a text file.
uncompress — Extract files from compressed archives.
NOTES
uniq
does not detect repeated lines unless they are adjacent. You may want to sort the input first, or use sort -u
instead of uniq
.
References
http://www.thegeekstuff.com/2013/05/uniq-command-examples
https://www.freebsd.org/cgi/man.cgi?query=uniq&sektion=1
https://web.archive.org/web/20051028205957/http://www.linuxmanpages.com/man1/uniq.1.php
http://www.computerhope.com/unix/uuniq.htm