diff --git a/addnode.sh b/addnode.sh new file mode 100755 index 0000000..5484477 --- /dev/null +++ b/addnode.sh @@ -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