Created
March 27, 2018 22:50
-
-
Save cjwinchester/547a44cdb46fd417604c6be318539a93 to your computer and use it in GitHub Desktop.
Get a sorted list of surnames that occur more than 100 times in the 2010 Census that end in "-son".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -O https://www2.census.gov/topics/genealogy/2010surnames/names.zip; unzip names.zip; awk -F "," '{print $1}' < Names_2010Census.csv | grep -i 'son$' | sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment