botvX_mjs/launch.sh

6 lines
90 B
Bash
Raw Normal View History

2024-08-12 04:33:43 -04:00
#!/bin/bash
while [ true ];
do node index.js;
if [ $? -eq 1 ]; then exit; fi
sleep 6;
done