Answers for "bash print count of unique words in column"

2

bash print count of unique words in column

# Example usage:
awk -F '\t' '{print $7}' input_file | sort | uniq -c
# Breakdown: 
# awk returns the 7th tab-delimited column/field of the input_file
# sort sorts the entries so that duplicate entries are adjacent
# uniq -c returns the counts of each type of element

# Note, add "| cut -c 9-" to remove the counts if you only want the
# 	unique values found in the column/field
Posted by: Guest on September-13-2020

Code answers related to "bash print count of unique words in column"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language