From 7a3c23411e53c5421c221142094c56b2e7473bd1 Mon Sep 17 00:00:00 2001 From: Sinsa-me Date: Wed, 4 Mar 2026 16:43:20 +0100 Subject: [PATCH] Script Automazione Aggiornamento --- 12to13.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 12to13.sh diff --git a/12to13.sh b/12to13.sh new file mode 100644 index 0000000..159a357 --- /dev/null +++ b/12to13.sh @@ -0,0 +1,14 @@ +#!bin/bash +apt update && apt upgrade -y +apt install sudo -y + +apt clean && apt autoremove + +sed -i 's/bookworm/trixie/g' /etc/apt/sources.list +find /etc/apt/sources.list.d -name "*.list" -exec sed -i 's/bookworm/trixie/g' {} \; + +apt update +apt full-upgrade -y + + +