I need to randomize mirrorlist
This is how I do
cd /etc/pacman.d grep -E '\.(fr|com)' mirrorlist.pacnew \ | awk 'BEGIN{srand()}/http:/{print rand(), $0}' | sort \ | awk -F'#' '{print $2}' > mirrorlist
This is how I do
cd /etc/pacman.d grep -E '\.(fr|com)' mirrorlist.pacnew \ | awk 'BEGIN{srand()}/http:/{print rand(), $0}' | sort \ | awk -F'#' '{print $2}' > mirrorlist