| Index: tools/gather_stats.sh
|
| diff --git a/tools/gather_stats.sh b/tools/gather_stats.sh
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..ee7e1511bf9725362d08d9026a48e2fef4040540
|
| --- /dev/null
|
| +++ b/tools/gather_stats.sh
|
| @@ -0,0 +1,23 @@
|
| +#!/bin/bash
|
| +
|
| +# Gather Blink stats.
|
| +./stats.py \
|
| + --modified-after=2013-11-01 \
|
| + --modified-before=2013-12-01 \
|
| + > blink-201311.out 2>&1 &
|
| +./stats.py \
|
| + --modified-after=2013-12-01 \
|
| + --modified-before=2014-01-01 \
|
| + > blink-201312.out 2>&1 &
|
| +
|
| +# Gather Chrome stats.
|
| +./stats.py \
|
| + --chrome \
|
| + --modified-after=2013-11-01 \
|
| + --modified-before=2013-12-01 \
|
| + > chrome-201311.out 2>&1 &
|
| +./stats.py \
|
| + --chrome \
|
| + --modified-after=2013-12-01 \
|
| + --modified-before=2014-01-01 \
|
| + > chrome-201312.out 2>&1 &
|
|
|