# Basic syntax:
sort input_file | uniq
# Sort the file first because uniq requires a sorted file to work. Uniq
# then eliminates all duplicated lines in the file, keeping one instance
# of each duplicated line
# Basic syntax:
sort input_file | uniq -d
# Sort the file first because uniq requires a sorted file to work
# Note, uniq -d only prints one instance of lines that have duplicates
# Use, uniq -c to count the number of duplicates in the file
# Basic syntax:
sort input_file | uniq -c
# Sort the file first because uniq requires a sorted file to work