mirror of
https://github.com/aljazceru/shurikenpi.io.git
synced 2025-12-17 06:04:23 +01:00
21 lines
337 B
Bash
Executable File
21 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
command=$1
|
|
shift
|
|
cd ./Scripts
|
|
|
|
if [[ $command == "stop" ]]; then
|
|
./stop.sh $@
|
|
fi
|
|
if [[ $command == "start" ]]; then
|
|
./start.sh $@
|
|
fi
|
|
if [[ $command == "run" ]]; then
|
|
./start.sh $@
|
|
fi
|
|
if [[ $command == "status" ]]; then
|
|
./status.sh $@
|
|
fi
|
|
if [[ $command == "config" ]]; then
|
|
./create_configuration.sh $@
|
|
fi |