15 lines
329 B
Text
15 lines
329 B
Text
|
#!/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
|
||
|
|