#!/bin/bash rm -f results/* cd ../ scripts/average_ensemble.pl Run_new12_3612 high_3612_2.5_-0.25_0.01 36 12 150 20 scripts/average_ensemble.pl Run_new12_3612 high_3612_2.6_-0.25_0.01 36 12 150 20 scripts/average_ensemble.pl Run_new12_3612 high_3612_2.65_-0.25_0.01 36 12 200 20 scripts/average_ensemble.pl Run_new12_3612 high_3612_2.7_-0.25_0.01 36 12 200 20 scripts/average_ensemble.pl Run_new12_3612 low_3612_2.7_-0.25_0.02 36 12 200 20 scripts/average_ensemble.pl Run_new12_3612 low_3612_2.7_-0.25_0.025 36 12 200 20 scripts/average_ensemble.pl Run_new12_3612 low_3612_2.75_-0.25_0.02 36 12 450 20 scripts/average_ensemble.pl Run_new12_3612 low_3612_2.75_-0.25_0.025 36 12 950 20 scripts/average_ensemble.pl Run_new12_3612 low_3612_2.8_-0.25_0.02 36 12 250 20 scripts/average_ensemble.pl Run_new12_3612 low_3612_2.8_-0.25_0.025 36 12 200 20 scripts/average_ensemble.pl Run_new12_3612 low_3612_2.9_-0.25_0.025 36 12 200 20 # Since we don't have overlapping hot- and cold-start runs to compare, # merge all the results and halve the number of files to plot cd Run_new12_3612/results for file in *.cold ; do cat $file >> ${file/cold/hot} # Find and replace "cold" with "hot" rm $file mv ${file/cold/hot} ${file/.cold/} done for file in *.hot ; do mv $file ${file/.hot/} # Find and replace ".hot" with nothing done