8 lines
144 B
Bash
8 lines
144 B
Bash
#!/bin/bash
|
|
|
|
# Afficher un message de confirmation
|
|
echo "Le Raspberry Pi va redémarrer maintenant."
|
|
|
|
# Redémarrer le Raspberry Pi
|
|
sudo reboot
|