mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-04-30 07:59:49 +00:00
8 lines
301 B
Bash
Executable file
8 lines
301 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# List all the current bittorrent nodes
|
|
#
|
|
|
|
# NOTE: JQ can be found at https://stedolan.github.io/jq/
|
|
|
|
curl -s -H "Accept: application/json; indent=4" https://bitnodes.earn.com/api/v1/snapshots/latest/ | jq -r '.nodes|keys[] as $k | "\($k)"' | grep -v onion | grep -v ']' | cut -d ':' -f 1
|