| 12345678910111213141516171819202122 | #!/bin/shecho "[netclient] joining network"if [ -z "${SLEEP}" ]; then    SLEEP=10fiTOKEN_CMD=""if [ "$TOKEN" != "" ]; then    TOKEN_CMD="-t $TOKEN"fi/root/netclient join $TOKEN_CMD -daemon off -dnson noecho "[netclient] Starting netclient checkin"# loop and call checkin -n allwhile [ 1 ]; do    # add logs to netclient.logs    /root/netclient checkin -n all    sleep $SLEEPdoneecho "[netclient] exiting"
 |