mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-10 12:04:43 +01:00
10 lines
238 B
Bash
Executable file
10 lines
238 B
Bash
Executable file
#!/bin/sh
|
|
set -ex
|
|
|
|
# This is a small wrapper script that uses reflector to update the pacman mirrors
|
|
# using the fastest servers of a given country.
|
|
|
|
reflector \
|
|
--country "$1" \
|
|
--fastest 10 \
|
|
--save /etc/pacman.d/mirrorlist
|