confpub/update-scripts/update-apt.sh

12 lines
136 B
Bash
Raw Normal View History

2024-01-22 16:05:42 +00:00
#!/bin/bash
set -eEuxo pipefail
apt clean
apt update
apt full-upgrade
apt autopurge
apt purge $(dpkg -l | awk '/^rc/ { print $2 }')