We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc9852 commit 0791d97Copy full SHA for 0791d97
scripts/reconnect.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+i=1
3
+while true ; do
4
+ (sleep $((5+$RANDOM/2000)) && pkill webrtc_client) &
5
+ ./webrtc_client.py --fake -t butterbrot.org -p 8081
6
+ echo Restarting, please wait \(round $i\)...
7
+ sleep 5
8
+ i=$(($i+1))
9
+done
0 commit comments