Skip to content

Instantly share code, notes, and snippets.

@hongkongkiwi
Created June 20, 2022 04:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hongkongkiwi/e9e118d32d9e129dcc6016cd0e76fd90 to your computer and use it in GitHub Desktop.
Save hongkongkiwi/e9e118d32d9e129dcc6016cd0e76fd90 to your computer and use it in GitHub Desktop.
One liner to find the fastest ubuntu mirror
curl -s http://mirrors.ubuntu.com/mirrors.txt | xargs -n1 -I {} sh -c 'echo `curl -r 0-102400 -s -w %{speed_download} -o /dev/null {}/ls-lR.gz` {}' | sort -g -r | head -1 | awk '{ print $2 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment