mirror of
https://github.com/fccview/cronmaster.git
synced 2026-01-15 09:51:43 +08:00
13 lines
307 B
Bash
13 lines
307 B
Bash
# @id: update-system
|
|
# @title: Update system packages
|
|
# @description: Update system packages and clean cache
|
|
# @category: System Operations
|
|
# @tags: update,packages,maintenance
|
|
|
|
# Update system packages
|
|
# Update and clean package cache
|
|
|
|
apt-get update
|
|
apt-get upgrade -y
|
|
apt-get autoremove -y
|
|
apt-get clean |