Skip to content

Instantly share code, notes, and snippets.

@creaktive
Created April 28, 2011 14:27
Show Gist options
  • Save creaktive/946449 to your computer and use it in GitHub Desktop.
Save creaktive/946449 to your computer and use it in GitHub Desktop.
extrai as capitais estaduais do BRloc
cat BRloc2.csv | iconv -f l1 -t utf8 | tr ';' ',' | perl '-F/,/' -anE 'if (($x ne $F[2]) and not exists $x{$F[2]}) { $x{$F[2]}++; print }; $x = $F[2]' > capitais.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment