#!/bin/bash Log=mainLog; echo "" > tempLog; grep "None," $Log | grep "precise," | grep "lc," >> tempLog; grep "None," $Log | grep "precise," | grep "dynamicLocomoMean," >> tempLog; grep "NewCOCOMINWrapperMedian," $Log | grep "precise," | grep "lc," >> tempLog; grep "NewCOCOMINWrapperMedian," $Log | grep "precise," | grep "dynamicLocomoMean," >> tempLog; grep "LSRWrapper," $Log | grep "precise," | grep "lsr," >> tempLog; grep "M5PWrapper," $Log | grep "precise," | grep "m5p," >> tempLog; grep "LocalWrapper," $Log | grep "precise," | grep "lc," >> tempLog; grep "None," $Log | grep "precise," | grep "nearestNeighborMre," >> tempLog; grep "None," $Log | grep "precise," | grep "lcManualStratification," >> tempLog; sed 's/coc81_[a-z0-9_]*/coc81_all/' tempLog | sed 's/nasa93_[a-z0-9_]*/nasa93_all/' > finalLog; rm tempLog;