archsetup

bootstrapping script for Arch Linux
git clone git://git.hanetzok.net/archsetup
Log | Files | Refs | README

aur-install.sh (132B)


      1 #!/bin/bash
      2 
      3 while IFS=$'\n' read -r prog; do
      4 	echo "Installing $prog..."
      5 	yay --noconfirm -S "$prog" > /dev/null
      6 done < ./aur.list