#!/bin/bash
while (true); do
	! arp |grep -v HW |grep -v incomplete |awk -F: 'BEGIN {RS="\n";FS=" "} {printf "%s\n",$1}' && exit 0
	sleep 10
done
