Skip to content

Instantly share code, notes, and snippets.

View 89luca89's full-sized avatar

Luca Di Maio 89luca89

View GitHub Profile
@89luca89
89luca89 / microos-status.sh
Last active November 13, 2023 15:05
This script will compare current package list on a system with the "ideal" one of a fresh install of the same system.
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
sudo "$0" "$@"
exit
fi
GREEN='\033[1m\033[32m'
YELLOW='\033[1m\033[33m'
CLEAR='\033[0m'