Last active 1745702495

Simple script that updates AUR packages from Git

update.sh Raw
1#!/bin/bash
2
3for pkg in **/; do
4 echo ">>> Trying to pull $pkg contents"
5 cd $pkg
6 git pull
7 cd ..
8done