summaryrefslogtreecommitdiff
path: root/rank-mirrors.sh
diff options
context:
space:
mode:
Diffstat (limited to 'rank-mirrors.sh')
-rwxr-xr-xrank-mirrors.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/rank-mirrors.sh b/rank-mirrors.sh
deleted file mode 100755
index ae9cf7d..0000000
--- a/rank-mirrors.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-# https://adufray.com/blog/2016/10/24/finding-the-fastest-freebsd-mirror
-
-for i in {1..15}; do
- echo -n "ftp${i}.us.freebsd.org: ";
- curl -o /dev/null -m 30 ftp://ftp${i}.us.freebsd.org/pub/FreeBSD/development/CVS-archive/projcvs-projects-archive.tar.gz 2>&1 | \
- tail -1 | \
- egrep -o '[^[:cntrl:]]+$';
-done