I was bored so i made this 
How to use:
first input: you need to give an IP like 192.168.10.1
and the second input: you give the range like 255
and the third input the Port you want to scan for like 80
and of course don't forget chmod 755 script
How to use:
first input: you need to give an IP like 192.168.10.1
and the second input: you give the range like 255
and the third input the Port you want to scan for like 80
and of course don't forget chmod 755 script
Bash:
#!/bin/bash
echo "Entering the IP Address:"
read FirstIP
echo "Entering the last octet of IP Address to make a range:"
read range
echo "Enter the port you want to scan for:"
read Port
nmap -sT $FirstIP-$range -p $Port >/dev/null -oG MyScan
cat MyScan | grep open > MyScan2
cat MyScan2