I am execution a wget command inside my groovy code, the command is like this:
cmd /c C:/wget.exe -q -O - <my-URL>
When i actually run this command from cmd or windows run util, it works fine. But when i try to run this from within my groovy code, I don't see the output. How can i capture the output of this within groovy.
Thanks!