auto-farmer/loop.sh

8 lines
125 B
Bash
Executable File

#!/bin/bash
# defaults to account 0, two hour wait
while :
do
node index.js "${1:-0}" "${2:-2}" || continue
sleep 5
done