Windows console:
- Tool A can write binary data to a file, but has no option for telling it to use stdout.
- Tool B can read binary data from stdin and process the info in it.
How can I get the output from A piped through B without using an intermediate file?
In other words: what is the Windows equivalent of /dev/stdout?
--jeroen