I'm trying to do a network scan however scanning the entire network for any possible host consumes to many resources, then I found that you could use arp to find all ip address on your network.
arp -n > exampleOutput.txt
Now my issues is that the output has some unwanted information and other such things to improve readablity. My hope is to do an nmap scan using my output file so i don't have to scan entire network. Rather I know what IPs exist on the network so just scan those.