-
-
Save lontivero/199648e6b8cd30e9ecd4d4f9ecd30f4e to your computer and use it in GitHub Desktop.
List active .onion bitcoin nodes (Bash)
This file contains hidden or 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
#!/bin/bash | |
# Command to get a list of active bitcoin .onion addresses from bitnodes.21.co | |
curl -s https://bitnodes.21.co/api/v1/snapshots/latest/ | egrep -o '[a-z0-9]{16}\.onion:?[0-9]*' | sort -ru |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment