Windows PowerShell overkill

Sometimes OO paradigm is an overhead, not a savior. Especially when it comes to simple manipulations such that are typical to shell scripting tasks. I mean, what appears more to the point and is faster to implement? This: ipconfig | findstr “Address” Or this: ifconfig | grep “Address” The latter is more flexible, you can … Read more