#! /bin/bash
# Last edited on 2011-06-22 22:09:54 by stolfi

idir="http://download.inep.gov.br/informacoes_estatisticas/2011/indicadores_educacionais/taxa_rendimento"

function wget_enem_by_uf() {
  yr="$1"; shift
  odir="data/enem-${yr}"
  mkdir -p ${odir}
  wget -nv "${idir}/${yr}/tx_rendimento_brasil_regioes_UFs_${yr}.zip" -O "${odir}/data.zip"
  ( cd ${odir} && unzip data.zip )
  ls -la ${odir}
}

wget_enem_by_uf 2007
wget_enem_by_uf 2008
wget_enem_by_uf 2009
wget_enem_by_uf 2010
