Start.sh sur vps debian 9
Bonjour,
J'ai un problème avec le script de lancement ./start.sh
./start.sh: ligne 10: erreur de syntaxe près du symbole inattendu « $'do\r' »
'/start.sh: ligne 10: `do
./start.sh: ligne 11: erreur de syntaxe près du symbole inattendu « echo »
'/start.sh: ligne 11: `echo "$i..."
Voici le script:
#!/bin/sh
while true
do
java -Xmx8042M -Xms8042M -jar spigot.jar
echo "If you want to completely stop the server process now, press Ctrl+C before
the time is up!"
echo "Rebooting in:"
for i in 5 4 3 2 1
do
echo "$i..."
sleep 1
done
echo "Rebooting now!"
done