This website requires JavaScript.
Explore
Help
Sign In
ctome
/
tldr
mirror of
https://github.com/CrimsonTome/tldr.git
Watch
1
Star
0
Fork
You've already forked tldr
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
0db5d3a678
tldr
/
pages
/
common
/
uniq.md
275 B
Raw
Blame
History
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}}