Ok so I have this script where I redirect the output of an ant command to a pipe with findstr
ant xyz | findstr ...
but as you know the output of the command will not get displayed on the stdout. So is there a way that we can redirect the output to both the pipe and stdout without using files?