diff --git a/aurcheck.sh b/aurcheck.sh new file mode 100644 index 0000000..0596bec --- /dev/null +++ b/aurcheck.sh @@ -0,0 +1,17 @@ +#!/bin/bash +if [ "$UID" -ne 0 ]; then + echo "This script must be run as root." + exit 1 +fi +if [ -d /tmp/aurcheck/ ]; then +rm -rf /tmp/aurcheck +fi +mkdir /tmp/aurcheck +cd /tmp/aurcheck +wget https://cdn.franscorack.com/pkg/aurcheck/aur_check-v2.sh +wget https://cdn.franscorack.com/pkg/aurcheck/package_list.txt && +chmod 777 -R /tmp/aurcheck +chmod +x /tmp/aurcheck/aur_check-v2.sh +sh /tmp/aurcheck/aur_check-v2.sh --full && +sleep 3 +rm -rf /tmp/aurcheck \ No newline at end of file