configfiles/scripts/.config/scripts/pacrank.sh
2015-10-08 10:31:53 +02:00

15 lines
329 B
Bash
Executable file

#!/bin/bash
if [ $# -ne 1 ]; then
echo "$0 <Country>"
exit 1
fi
country=$1
INPUT=/etc/pacman.d/mirrorlist.pacnew
OUTPUT=/etc/pacman.d/mirrorlist
cat $INPUT | awk -v "COUNTRY=$country" 'BEGIN { c="" } /^##/ { c=substr($0,4); } /^#Server/ { if(c==COUNTRY) { print substr($0,2); } }' | rankmirrors - | sudo tee $OUTPUT