mirror of https://github.com/calzoneman/sync.git
9 lines
59 B
Bash
9 lines
59 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
while :
|
||
|
do
|
||
|
node server.js
|
||
|
sleep 2
|
||
|
|
||
|
done
|