auto-farmer/loop.sh

8 lines
125 B
Bash
Raw Normal View History

2021-02-14 21:09:47 +00:00
#!/bin/bash
2021-02-17 00:56:55 +00:00
# defaults to account 0, two hour wait
2021-02-14 21:09:47 +00:00
while :
do
2021-02-17 00:56:55 +00:00
node index.js "${1:-0}" "${2:-2}" || continue
2021-02-14 21:09:47 +00:00
sleep 5
done