/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

fak3r.com
| | willhaley.com
4.6 parsecs away

Travel
| | These commands can be used in a script to automate the installation of yay, an AUR Helper. #!/usr/bin/env bash set -e pacman -Sy --needed --noconfirm sudo wget base-devel # Set up passwordless-sudo for the aur helper account printf "aur ALL = (root) NOPASSWD: /usr/bin/makepkg, /usr/bin/pacman" > /etc/sudoers.d/02_aur useradd -m aur || true # Install package-query su - aur -c bash -c 'rm -rf /tmp/package-query ; mkdir -p /tmp/package-query ; cd /tmp/package-query ; wget https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz ; tar zxvf package-query.tar.gz ; cd package-query ; makepkg --syncdeps --rmdeps --install --noconfirm' # Install yay su - aur -c bash -c 'rm -rf /tmp/yay ; mkdir -p /tmp/yay ; cd /tmp/yay ; wget https://aur.archlinux.org/cgi...
| | brunty.me
3.9 parsecs away

Travel
| | Developer and problem solver
| | www.chriswarbo.net
9.8 parsecs away

Travel
| |
| | thepugautomatic.com
21.9 parsecs away

Travel
| I spent some time in encoding hell the other day, trying to read a UTF-8 encoded text file with osascript in a bash shell script. Despite its preference for the MacRoman encoding, AppleScript does...