Unix and Linux Discussions Tagged with lines |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
5,973 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,995 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
6,695 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
8,097 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
1,680 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,157 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
3,657 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,901 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
11,806 |
Shell Programming and Scripting |
|
|
|
5 |
11,583 |
Shell Programming and Scripting |
|
|
|
1 |
2,067 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,237 |
Shell Programming and Scripting |
|
|
|
6 |
2,299 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,408 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
8,735 |
Programming |
|
|
|
2 |
1,651 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,130 |
Shell Programming and Scripting |
|
|
|
1 |
5,433 |
Shell Programming and Scripting |
|
|
|
1 |
4,875 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,751 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,747 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,682 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,537 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
1,966 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,244 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,108 |
Shell Programming and Scripting |
|
|
|
2 |
3,082 |
Shell Programming and Scripting |
|
|
|
6 |
5,545 |
Shell Programming and Scripting |
|
|
|
1 |
4,113 |
Shell Programming and Scripting |
|
|
|
3 |
5,152 |
Shell Programming and Scripting |
|
|
|
4 |
3,739 |
Shell Programming and Scripting |
|
|
|
5 |
2,728 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
2,048 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
917 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,196 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,601 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,320 |
UNIX for Beginners Questions & Answers |
|
|
|
18 |
2,313 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,086 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,517 |
UNIX for Beginners Questions & Answers |
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)