Skip to content

Commit

Permalink
Fixing script to correspond to new output format
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Nov 20, 2018
1 parent 63ab7e9 commit 3d6d9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/output_parser/solvetimes_from_output.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ls -- *.out.gz | sed 's/gz.*/gz/' > allFiles
echo "Getting solveTimes"
zgrep "Total" *.out.gz | awk '{print $5}' > solveTimes
echo "Getting problems solved under 1500"
zgrep "Total" *.out.gz | awk '{if ($5 < 1500) {print $1}}' | sed 's/:c.*$//' | sort > solved_under_1500_full_list
zgrep "Total" *.out.gz | awk '{if ($7 < 1500) {print $1}}' | sed 's/:c.*$//' | sort > solved_under_1500_full_list


# for normal
Expand Down

0 comments on commit 3d6d9f1

Please sign in to comment.