Skip to content

Instantly share code, notes, and snippets.

View maoyuching's full-sized avatar

Richard maoyuching

  • zhejiang
View GitHub Profile
@brahimmachkouri
brahimmachkouri / uninstall_ajenti.sh
Last active October 31, 2024 09:45
Uninstall Ajenti
#!/bin/bash
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
DISTRO=
OS=
if grep 'Debian' /etc/issue > /dev/null 2>&1 ; then