I have an IP address, say 192.168.1.1, that I want to match.
I have a file called afile that looks like this
item1, item2, 192.168.1.1
item3, item4, 192.168.1.10
item5, item6, 192.168.2.1
If I do grep "192.168.1.1" afile both the first and second lines of afile are matched, which is not what I want.
I'm aware of plenty of regular expressions that will match any IP address, but I'm not aware of any regular expressions that match a particular IP address.
Any help with this is appreciated.
What if the IP address isn't on the end of the line? For example, what if columns two and three were swapped in my example file?