「IT tips linux環境にて、改行をCRとした時、CRの行は非表示となる」の版間の差分

提供:onayami
編集の要約なし
編集の要約なし
 
9行目: 9行目:
print "cccc\n";
print "cccc\n";


</syntaxhighlight>
<syntaxhighlight lang="bash" line>
$ php print.php
$ php print.php
cccc
cccc

2024年4月19日 (金) 13:38時点における最新版

  • linux環境にて、改行をCRとした時、CRの行は非表示となる
<?php
print "aaaa\r";
print "bbbb\r";
print "cccc\n";
$ php print.php
cccc

php print.php > print.txt

$ file print.txt
print.txt: ASCII text, with CR, LF line terminators

$ od -c print.txt
0000000   a   a   a   a  \r   b   b   b   b  \r   c   c   c   c  \n
0000017