Created
July 19, 2019 20:45
-
-
Save Meekohi/d03154775c68aac00470419fe2a6a5ac to your computer and use it in GitHub Desktop.
Urban Areas above 50,000 in population
This file contains hidden or 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 -s -B "https://www2.census.gov/geo/docs/reference/ua/ua_list_all.txt" | iconv -f iso8859-1 -t utf-8 | awk -F ',|( +)' '{ if(NR > 1 && $4 > 50000) {print $2} }' | LC_ALL=C sed $'s/--/\\\n/g' | sed 's/ County//g' |sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment