Skip to content

Instantly share code, notes, and snippets.

@lurepos
lurepos / aur-git-install.sh
Last active October 6, 2025 17:11
install in arch linux from AUR when its down
set -e
if [ -z "$1" ]; then
echo "Error: No package name specified."
echo "Usage: $0 <package-name>"
exit 1
fi
PACKAGE_NAME="$1"
CLONE_URL="https://github.com/archlinux/aur.git"