Welcome to kriss.run!


Back

update

#!/usr/bin/env bash

#  The script is a simple bash script that updates the system. It is not a part of the game itself, but it is used to update the system on which the game is running. 
#  The script is run with the following command: 
#  ./update.sh

__run_updates() {
    echo "Updating the system...";
    sudo apt-get update -y;
    sudo apt-get upgrade -y;
    sudo apt-get full-upgrade -y;
    sudo apt-get dist-upgrade -y;
    sudo apt-get autoremove -y;
    sudo apt-get autoclean -y;
    echo "Updated!";
}

__run_updates