Ostatnio aktywny 1745702495

Simple script that updates AUR packages from Git

Rewizja 8a347fa6df7b173308357222d92dd7a225d83702

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