linux-tools/lnxtools.sh

21 lines
506 B
Bash
Raw Normal View History

2020-03-05 21:27:48 +01:00
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$DIR" || exit
FILE=./your_system_information.txt
if [ ! -f "$FILE" ]; then
2020-03-05 21:27:48 +01:00
echo "Preparing your system for the first run"
apt-get update -y && apt-get upgrade -y
apt-get install curl screenfetch python3.7 python3-pip -y
2020-03-05 21:27:48 +01:00
pip3 install -r requirements.txt
python3 main.py helloworld
2020-03-05 21:27:48 +01:00
else
python3 main.py "$@"
fi