Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 530 Bytes

201110261748.txt.md

File metadata and controls

18 lines (11 loc) · 530 Bytes

2.4 perl.exe输出\n时自动转成\r\n

http://scz.617.cn/misc/201110261748.txt

Q:

perl.exe -e "print "\n"" | xxd -g 1 0000000: 0d 0a ..

在cmd.exe中\n被自动转换成\r\n输出了,但我想保持精确控制。

A: scz 2011-10-26 15:20

perl.exe -e "binmode(stdout);print "\n"" | xxd -g 1 0000000: 0a .

perl.exe -e "binmode(stdout);print "\r\n"" | xxd -g 1 0000000: 0d 0a ..