This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/fish | |
# After running this script | |
# To sort by fastest 10: cat OUTPUT_FILE | sort -n | head -n10 | |
# To randomly output 10: cat OUTPUT_FILE | shuf -n10 | |
# Then to convert into a format for yggdrasil config | |
# ... (Anyone of the above commands) | awk '{print "\"" $2 "\""}' | |
set output (mktemp -u) |