mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-04-28 06:59:40 +00:00
13 lines
453 B
Bash
Executable file
13 lines
453 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
#
|
|
# List all the current bittorrent nodes
|
|
#
|
|
|
|
cd "$(dirname "${0}")" || exit 1
|
|
. ./common.sh || exit 1
|
|
|
|
# NOTE: JQ can be found at https://stedolan.github.io/jq/
|
|
|
|
RESULT="$(curl -L -s -H "Accept: application/json; indent=4" https://bitnodes.io/api/v1/snapshots/latest/ | jq -r '.nodes|keys[] as $k | "\($k)"' | grep -v onion | grep -v ']' | cut -d ':' -f 1)"
|
|
is_str_empty "${RESULT}" "String empty, please review this script."
|