blob: 83b0dfba0494c98c6490efd92f868b1896929070 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
# Assumptions:
# I suppose each ak node is connected to some IP.
# They also run IPFS.
# They also are a part of our swarm.
# So should we ask for our peers?
ak-ipfs-swarm-peers > tmp_peers
while IFS="" read -r p || [ -n "$p" ]
do
peer="$(echo "$p" | sed -e 's/^.*\///')"
echo "Peer $peer found! Examining..."
ak-ipfs-cat /ipns/$peer/zlatest
done < tmp_peers
rm tmp_peers
|