Friday, July 28, 2017

count unique values in rows with bash, grep and awk

cat /some/file/path.txt | awk '{ print $5}' | uniq -c 


No comments:

Post a Comment