owobot/launch.sh

6 lines
90 B
Bash
Raw Normal View History

2024-07-27 02:39:18 -04:00
#!/bin/bash
while [ true ];
do node index.js;
2024-08-12 05:13:32 -04:00
if [ $? -eq 1 ]; then exit; fi
2024-07-27 02:39:18 -04:00
sleep 6;
done