script-linux/xampp

10 lines
165 B
Plaintext
Raw Normal View History

2023-09-15 14:16:15 +02:00
#!/bin/bash
2023-09-18 11:52:13 +02:00
if [[ $1 == "stop" ]]; then
sudo /opt/lampp/lampp stop
sudo systemctl start apache2
else
sudo systemctl stop apache2
sudo /opt/lampp/lampp start
fi