0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

改行コードの視覚的確認

Last updated at Posted at 2015-06-24

同僚が改行コードの違いを認識してくれない。

od -c

$ od -c foo.txt                   
0000000   f   o   o  \r  \n   b   a   r  \r  \n
0000012

これとか、

color_echo

$ color_echo -p '/.\r\n/' -b red < foo.txt

スクリーンショット 2015-06-24 17.27.53.png

これ、あたりを教えようかと考えてたら、、、

cat -v

$ cat -v foo.txt
foo^M
bar^M

知らんかった、、、

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?