time-and-save.sh 367 B

12345678910
  1. #!/bin/bash
  2. # Save path the current path that will be used to store the results.
  3. BASE_PATH=$(pwd)
  4. # Enter in the directory passed as first parameter, then execute run and save the results in the file passed as second parameter
  5. cd $1
  6. BENCH_NAME=$1
  7. BENCH_TIME=`(/usr/bin/time -f "%e" ./run) 2>&1 > /dev/null | tail -1`
  8. echo "$BENCH_NAME $BENCH_TIME" >> $BASE_PATH/$2