Move 2015 out of the way.

This commit is contained in:
Bert Peters
2016-12-01 11:25:19 +01:00
parent a75d14ec17
commit b37fd44fa7
50 changed files with 0 additions and 0 deletions

19
2015/runall.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
rundir()
{
input=""
if [ -f $1/input.txt ]; then
input="$1/input.txt"
fi
for i in $1/*.py; do
echo "$i" "$input"
time python "$i" "$input"
echo
done
}
for i in day-*; do
rundir $i
done