#!/bin/bash rm -f results/* cd ../ scripts/average_ensemble.pl Run_new12_4020 low_4020_2.65_-0.25_0.015 40 20 200 20 scripts/average_ensemble.pl Run_new12_4020 low_4020_2.7_-0.25_0.015 40 20 450 20 scripts/average_ensemble.pl Run_new12_4020 low_4020_2.7_-0.25_0.02 40 20 200 20 scripts/average_ensemble.pl Run_new12_4020 high_4020_2.7_-0.25_0.025 40 20 200 20 scripts/average_ensemble.pl Run_new12_4020 low_4020_2.75_-0.25_0.015 40 20 200 20 scripts/average_ensemble.pl Run_new12_4020 low_4020_2.75_-0.25_0.02 40 20 300 20 scripts/average_ensemble.pl Run_new12_4020 high_4020_2.75_-0.25_0.025 40 20 200 20 scripts/average_ensemble.pl Run_new12_4020 low_4020_2.8_-0.25_0.015 40 20 250 20 scripts/average_ensemble.pl Run_new12_4020 low_4020_2.8_-0.25_0.02 40 20 200 20 scripts/average_ensemble.pl Run_new12_4020 high_4020_2.8_-0.25_0.025 40 20 200 20 scripts/average_ensemble.pl Run_new12_4020 low_4020_2.9_-0.25_0.025 40 20 640 20 # Since we don't have overlapping hot- and cold-start runs to compare, # merge all the results into files with slightly shorter names cd Run_new12_4020/results for file in *.cold ; do cat $file >> ${file/cold/hot} # Find and replace "cold" with "hot" rm $file done for file in *.hot ; do mv $file ${file/.hot/} # Find and replace ".hot" with nothing done