#!/bin/bash -x
export variable=$1
export yyyys=$2
export dir_out=/dados/sismom/SisMOM/sipec/era5
#python teste3.py --variables 10m_u_component_of_wind,10m_v_component_of_wind,mean_sea_level_pressure,total_precipitation, --years 2018, 2019, 2020 --num_processes 3
python download_era5_parallel.py --variables ${variable} --output_dir ${dir_out} --years ${yyyys} --num_processes 3
