I would like to execute 120 models a shell script for 100 years. i.e.
start=1900; end=2000
using model1,model2, model3 and so on until 120 models
I can execute them manually with following command: (lets say 3 models)
exec "${script_dir}myscript $start $end $model1 $model2 $model3"
How can I use a loop to extend the above command something like
exec "${script_dir}myscript $start $end $model1 $model2 $model3 $model4 ..... $model120"
bashacceptable (which would simplify the answer)?${script_dir}myscript $start $end $model1 $model2 $model3 and so on until $model120Can you please suggest