# extract data from a xml file NT=(1 2 3 4 5) # Number of Tasks NDP=(1 2 3 3 3) # Number of different periods # TCU is Target CPU usage for t in 0 1 2 3 4; do for TCU in 20 30 40 50 60 70 80 90; do xml_file="generated_scenario1/${NT[t]}_${NDP[t]}_${TCU}_${t}.xmlv3" output_file="generated_parameters1/data_${NT[t]}_${NDP[t]}_${TCU}_${t}.txt" ./extract_xml_data.sh $xml_file $output_file done done