6 lines
95 B
Bash
Executable File
6 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
for node in `cat known_nodes.txt`;do
|
|
echo "Trying $node"
|
|
chia show -a $node
|
|
done
|