I needed to find a specific IP address from the output of the netstat
command. Turns out, there’s a Windows’ grep
equivalent called findstr
:
netstat -aon | findstr /R /C:"192.168.0.1"
See superuser.com
I needed to find a specific IP address from the output of the netstat
command. Turns out, there’s a Windows’ grep
equivalent called findstr
:
netstat -aon | findstr /R /C:"192.168.0.1"
See superuser.com