1
0
Fork 0
linux-conf/install.sh
2021-06-17 22:03:31 +02:00

14 lines
No EOL
280 B
Bash
Executable file

#!/bin/bash
OS_NAME=`cat /etc/os-release | grep "^NAME=" | sed 's/NAME=//g' | sed 's/"//g'`
OS_NAME=${OS_NAME^^} # UPPERCASE
case $OS_NAME in
"UBUNTU")
source ./install_scripts/ubuntu.sh
start
;;
*)
echo "OS not supported"
;;
esac