~rengolin/cbuild/llvm

1
2
3
4
5
6
7
8
#!/bin/bash

DRIFT=$(($RANDOM % 30))

while true; do
	./run.sh
	sleep $((120 + $DRIFT))
done