sh/bash/apt.sh
2024-11-11 20:40:56 +01:00

10 lines
92 B
Bash

apt_clean() {
apt-get \
clean
}
apt_upgrade() {
apt-get \
upgrade \
--assume-yes
}