Compare commits
3 Commits
e99b430ce8
...
d8e73040bc
Author | SHA1 | Date | |
---|---|---|---|
d8e73040bc | |||
bb09061c3b | |||
08fbd0beb9 |
20
home_external/.bash_aliases_extra
Normal file
20
home_external/.bash_aliases_extra
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
updateSystem() {
|
||||||
|
noconfirm=
|
||||||
|
if [[ $1 == "-y" ]]; then
|
||||||
|
noconfirm="--assume-yes"
|
||||||
|
fi
|
||||||
|
full=
|
||||||
|
if [[ $2 == "--full" ]]; then
|
||||||
|
full="full-"
|
||||||
|
fi
|
||||||
|
executeAndNotify "doUpdateSystem $noconfirm $full" "system updated" "system update failed";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
doUpdateSystem() {
|
||||||
|
sudo apt update;
|
||||||
|
sudo apt ${2}upgrade $1;
|
||||||
|
sudo apt autoremove $1;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user