10 lines
123 B
Bash
Executable File
10 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# restart.sh
|
|
# Stoppt und startet Crumbforest neu.
|
|
|
|
echo "🔄 Restarte Crumbforest..."
|
|
|
|
./stop.sh
|
|
./start.sh
|