cron mit jeden Donnerstag um 23.30
crontab -e
30 23 * * thu /root/update.sh
#!/bin/bash
apt update && apt upgrade -y && apt dist-upgrade -y && apt autoremove -y
echo "Das update.sh Script wurde ausgefuehrt !"
chmod +x update.sh