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

提供:onayami
(ページの作成:「<pre> ------------------------------------------------------- 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 </pre>」)
 
編集の要約なし
 
(同じ利用者による、間の1版が非表示)
1行目: 1行目:
<pre>
 
-------------------------------------------------------
* linux環境にて、改行をCRとした時、CRの行は非表示となる
linux環境にて、改行をCRとした時、CRの行は非表示となる
 
-------------------------------------------------------
<syntaxhighlight lang="php" line>


<?php
<?php
9行目: 9行目:
print "cccc\n";
print "cccc\n";


</syntaxhighlight>
<syntaxhighlight lang="bash" line>
$ php print.php
$ php print.php
cccc
cccc
21行目: 24行目:
0000017
0000017


</pre>
</syntaxhighlight>

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