debian #1

Open
fabian wants to merge 53 commits from debian into master
Showing only changes of commit 452fd7600d - Show all commits

View File

@@ -0,0 +1,9 @@
updateSystem() {
noconfirm=
if [[ $1 == "-y" ]]; then
noconfirm="-y"
fi
sudo apt update;
sudo apt upgrade $noconfirm;
sudo apt autoremove $noconfirm;
}