User Details
User Details
- User Since
- Feb 22 2019, 6:20 PM (299 w, 2 d)
- Availability
- Available
Feb 23 2019
Feb 23 2019
machsix added a comment to T3194: Export of keys fails (gets mangled) if stdout is redirected to a file on Windows.
This is caused by the encoding of file in windows. If we directly redirect the stdout to file, windows encodes the file as CRLF+UCSE LE BOM but linux encodes it as LF+UTF-8. To make the file work, I just need to run dos2unix to convert the encoding. Hope it help someone having similar issue.