berto -> RE: Scenario turn lengths (11/28/2015 2:50:39 AM)
|
Here you go: Robert@roberto /cygdrive/f/Games/Matrix Games/Middle east/middle_east/scenarios $ for f in *.scn; do head -n 4 $f | tail -n 1 | awk '{print $NF}' >> junk; done; awk -F\- '{print $2}' junk | awk -F\[ '{print $1}' | sort | uniq -c | sort -n -k 2 5 6 1 8 3 9 4 10 1 11 6 12 3 14 10 15 4 16 5 17 3 18 8 20 2 21 4 22 1 24 3 25 1 27 1 28 1 29 3 30 1 32 3 35 1 40 2 45 2 50 2 60 1 65 1 70 1 80 At the tail end of that output, you can see where there is 1 scenario of 80 turns, 1 scenario of 70 turns, 1 scenario of 65 turns, 2 of 60, 2 of 50, etc. So yes, there are several marathon scenarios of 50 turns or more, seven in fact. Hope that's enough.
|
|
|
|