Miscellaneous script for my everyday usage.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567 |
- #!/usr/bin/env zsh
-
- # Gets up-to-date Pacman mirrorlist with reflector.
- # Only mirrors in Germany, with HTTPS and synchronized in the last three hours.
- # Returns the best three sorted by download rate.
-
- sudo reflector -c DE -a 3 -p https -f 3 --sort rate
|