Unix and Linux Discussions Tagged with uniq |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
15 |
10,965 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
3,720 |
Shell Programming and Scripting |
|
|
|
5 |
2,675 |
AIX |
|
|
|
5 |
3,176 |
Shell Programming and Scripting |
|
|
|
4 |
2,655 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,785 |
Shell Programming and Scripting |
|
|
|
4 |
2,937 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,157 |
Shell Programming and Scripting |
|
|
|
1 |
1,481 |
Shell Programming and Scripting |
|
|
|
5 |
5,952 |
Shell Programming and Scripting |
|
|
|
9 |
2,987 |
Shell Programming and Scripting |
|
|
|
2 |
3,241 |
Shell Programming and Scripting |
|
|
|
3 |
21,272 |
Shell Programming and Scripting |
|
|
|
4 |
2,331 |
Shell Programming and Scripting |
|
|
|
23 |
12,745 |
Shell Programming and Scripting |
|
|
|
3 |
3,455 |
Shell Programming and Scripting |
|
|
|
6 |
2,875 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
4,740 |
Shell Programming and Scripting |
|
|
|
7 |
3,093 |
Shell Programming and Scripting |
|
|
|
6 |
3,155 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,628 |
Shell Programming and Scripting |
|
|
|
5 |
1,914 |
Shell Programming and Scripting |
|
|
|
1 |
2,955 |
OS X (Apple) |
|
|
|
2 |
21,504 |
Shell Programming and Scripting |
|
|
|
1 |
3,741 |
Shell Programming and Scripting |
|
|
|
2 |
3,094 |
Shell Programming and Scripting |
|
|
|
11 |
7,893 |
Shell Programming and Scripting |
|
|
|
4 |
3,486 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
10,714 |
Shell Programming and Scripting |
|
|
|
3 |
3,041 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
7,564 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
3,536 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
7,149 |
Shell Programming and Scripting |
|
|
|
17 |
88,664 |
Shell Programming and Scripting |
|
|
|
2 |
3,414 |
Shell Programming and Scripting |
|
|
|
3 |
15,899 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
31,010 |
Shell Programming and Scripting |
|
|
|
5 |
3,069 |
Shell Programming and Scripting |
|
|
|
8 |
5,186 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
2,759 |
Shell Programming and Scripting |
uniq(1) General Commands Manual uniq(1)
Name
uniq - report repeated lines in a file
Syntax
uniq [-udc[+n][-n]] [input[output]]
Description
The command reads the input file comparing adjacent lines. In the normal case, the second and succeeding copies of repeated lines are
removed; the remainder is written on the output file. Note that repeated lines must be adjacent in order to be found. For further infor-
mation, see
Options
The n arguments specify skipping an initial portion of each line in the comparison:
-n Skips specified number of fields. A field is defined as a string of non-space, non-tab characters separated by tabs and spaces from its
neighbors.
+n Skips specified number of characters in addition to fields. Fields are skipped before characters.
-c Displays number of repetitions, if any, for each line.
-d Displays only lines that were repeated.
-u Displays only unique (nonrepeated) lines.
If the -u flag is used, just the lines that are not repeated in the original file are output. The -d option specifies that one copy of
just the repeated lines is to be written. The normal mode output is the union of the -u and -d mode outputs.
The -c option supersedes -u and -d and generates an output report in default style but with each line preceded by a count of the number of
times it occurred.
See Also
comm(1), sort(1)
uniq(1)