sg-proxy/start.sh

9 lines
89 B
Bash
Raw Normal View History

#!/bin/bash
npm install
while true;
do
node main.js
echo sleep 5;
sleep 5;
done