5
0
mirror of https://github.com/cwinfo/hyperboria-nodedb synced 2024-09-20 01:52:30 +00:00

Merge pull request #22 from magik6k/addnode

Made simple script to make people add nodes correctly
This commit is contained in:
Michał Zieliński 2015-09-19 20:19:38 +02:00
commit 0784c379bd

17
addnode.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
NODEFILE=nodes
if [ "$#" -ne 2 ]; then
echo -e "Usage:\n\t./addnode.sh IPv6 name [name] ..."
exit 1
fi
if grep --quiet $1 $NODEFILE; then
echo "Node IP is already on the list, please edit manually"
exit 1
fi
echo "$@" >> $NODEFILE
sort $NODEFILE -o $NODEFILE