美文网首页Linux
unix.txt 和win.txt的区别

unix.txt 和win.txt的区别

作者: 香波地海 | 来源:发表于2021-01-13 11:12 被阅读0次

    在unix系统中,文本文件默认用\r作为换行符,但是在查看文件时现实成为^M,如下:

    >> echo "abc\rdef\rghi\r123\r456\r" >unix.txt
    >> less unix.txt
    abc^Mdef^Mghi^M123^M456
    unix.txt (END)
    

    可以通过tr命令进行替换 tr '\r' '\n' <infile> outfile

    >> tr '\r' '\n' <unix.txt> win.txt
    >> less win .txt
    abc
    def
    ghi
    123
    456
    

    相关文章

      网友评论

        本文标题:unix.txt 和win.txt的区别

        本文链接:https://www.haomeiwen.com/subject/vxruaktx.html