#!/bin/bash rm -f results/* python ../scripts/average_ensemble.py high_3264_2.8_-0.25_0.0025 1100 20 python ../scripts/average_ensemble.py low_3264_2.8_-0.25_0.005 9999 9999 python ../scripts/average_ensemble.py high_3264_2.8_-0.25_0.01 400 20 python ../scripts/average_ensemble.py high_3264_3.0_-0.25_0.0025 300 20 python ../scripts/average_ensemble.py low_3264_3.0_-0.25_0.01 200 20 python ../scripts/average_ensemble.py low_3264_5.0_-0.25_0.0025 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_3264/results for file in *.low ; do cat $file >> ${file/low/high} # Find and replace "low" with "high" rm $file done for file in *.high ; do # Sort high and low together mv $file TEMP sort TEMP > ${file/.high/} # Find and replace ".high" with nothing done rm TEMP