mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 05:17:58 +01:00
275 B
275 B
uniq
Report or omit repeated lines.
- Display each line once:
uniq {{file}}
- Display only unique lines:
uniq -u {{file}}
- Display only duplicate lines:
uniq -d {{file}}
- Display number of occurences of each line along with that line:
uniq -c {{file}}