Skip to content

Instantly share code, notes, and snippets.

View stephanschielke's full-sized avatar

Stephan Schielke stephanschielke

View GitHub Profile
@stephanschielke
stephanschielke / update_packages.sh
Last active August 22, 2022 08:13
ARCH linux package update script for pacman and yaourt
#!/bin/bash
echo ==========
echo Check root
echo ==========
if [[ $UID == 0 ]]; then
echo "Please run this script WITHOUT sudo:"
echo "$0 $*"
exit 1
fi