Using findstr to simplify output
This might be an oldie to some of you but I still like it so here we go. It is rather annoying when you receive a large output from a CLI based tooland you need to go through it manually in an attempt to find what you are lookingfor (consider an output from netstat). By using findstr you can filter the display to provide you with the line on which the informationyou are looking for is displayed. This is achieved by piping the output to findstr: This is one example of what this tool is able to do. Keep … Continue reading Using findstr to simplify output