Uniq Bash

[Solved] Uniq Bash | Swift - Code Explorer | yomemimo.com
Question : uniq bash

Answered by : armando-flores

# uniq command filters outputs to be unique. For example:
sort letters.txt
a b b c c c
sort letters.txt | uniq
a b c
sort dogs.txt | uniq -d # Only shows duplicated lines
b c

Source : | Last Update : Wed, 06 Jul 22

Answers related to uniq bash

Code Explorer Popular Question For Swift