owobot/launch.sh

6 lines
90 B
Bash
Raw Permalink Normal View History

2024-07-30 05:56:23 -04:00
#!/bin/bash
while [ true ];
do node index.js;
if [ $? -eq 1 ]; then exit; fi
sleep 6;
done