「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行目:
<pre>
 
-------------------------------------------------------
* linux環境にて、改行をCRとした時、CRの行は非表示となる
linux環境にて、改行をCRとした時、CRの行は非表示となる
 
-------------------------------------------------------
<syntaxhighlight lang="php" line>


<?php
<?php
21行目: 21行目:
0000017
0000017


</pre>
</syntaxhighlight>

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

  • 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