I would like to find the most efficient regular expression to find three IP addresses in one search, but I'm not sure if there is a more efficient (faster) syntax that I could use.
I've tried searching for them one address at a time, but I'm curious if there is a faster way.
zgrep -a -i 192\.168\.1\.(10|23|34) *.* >> Results.txt
I'm not getting any errors. I'm really just trying to find out if there is a faster syntax I could be using.