I want to search for text in a block or rather after the matched string but not immediately
e.g: From output of 'ipconfig', I wanna extract the IPv4 address in WiFi section only
ipconfig | sls -Pattern "Wifi" -Context 0, 4
returns matched string and 4 lines after it but I want only 4th line and "-Pattern 'IPv4'" returns all ips from all the adapters
How do I extract only Wifi IPv4?