| #!/bin/shset -eif [[ $EUID -ne 0 ]]; then   echo "This script must be run as root"    exit 1fi[ -z "$KEY" ] && KEY=nokey;wget -O netclient https://github.com/gravitl/netmaker/releases/download/latest/netclientchmod +x netclientsudo ./netclient join -t $KEYrm -f netclient
 |