We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Currently PowerShell parses STDOUT as string when piping from an EXE, while in some cases it should be preserved as a byte stream, like this scenario:
curl.exe http://whatever/a.png > a.png
or
node a.js | gzip -c > out.gz
Affected patterns include: native | native, native > file and (maybe) cat file | native.
native | native
native > file
cat file | native
Currently PowerShell parses STDOUT as string when piping from an EXE, while in some cases it should be preserved as a byte stream, like this scenario:
or
Affected patterns include:
native | native,native > fileand (maybe)cat file | native.