Files
shurikenpi.io/shuriken.sh
2023-08-31 22:45:14 +02:00

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