正确的换行符让Linux和Windows愉快的玩耍

  • 原创
  • Madman
  • /
  • /
  • 0
  • 12310 次阅读

Linux系统转换文本文件的换行符-min.png

Synopsis: 不同操作系统中的换行符标志不一样,在 ASCII 编码中以 LF (NL line feed, new line) 换行键和 CR (carriage return) 回车键来控制文本换行,即我们经常说的 \n 和 \r。Windows下面保存的文本文件默认换行符是 CRLF,而 Linux 是 LF,所以 Windows 下面的文件放到 Linux 系统中无法被打开,本文介绍一些常用方法来查看当前文件使用的是哪种文本换行符,以及如何进行转换

1. 换行符

不同操作系统中的换行符标志不一样,在ASCII编码中以LF (NL line feed, new line)换行键CR (carriage return)回车键来控制文本换行,即我们经常说的\n\r

  • Unix和类Unix(如Linux): \n
  • Windows(MS-DOS): \r\n
  • Mac OS X: \n
  • Mac OS 9: \r

Windows文本在Linux中无法执行:

使用Windows系统中Sublime Text 3编辑器写的脚本传输到Linux中(不是复制内容),导致脚本无法运行

[root@CentOS ~]$ ./test.sh 
-bash: ./test.sh: /bin/bash^M: bad interpreter: No such file or directory

2. Linux查看文本换行符

2.1 cat命令

使用选项-A来显示换行符

[root@CentOS ~]$ cat -A test.sh 
#!/bin/bash^M$
# Author: Madman^M$
# Date: 2017/03/06^M$
# Email: wangy8961@163.com^M$
# Version: 1.0^M$
^M$
echo "Test shell file"^M$

2.2 vi/vim命令

使用选项-b以Binary mode打开文件,来显示换行符

[root@CentOS ~]$ vim -b test.sh 

#!/bin/bash^M
# Author: Madman^M
# Date: 2017/03/06^M
# Email: wangy8961@163.com^M
# Version: 1.0^M
^M
echo 
                                
                            
分类: Linux
标签: cat CRLF dos2unix LF tr vim sed
  • Take your money pomoshbudget.blogspot.cz Cu
  • Make money online pomoshbudget.blogspot.gr dD
  • Special offer for you wqrugitisi.blogspot.fr Ar
  • Receive a gift pomoshbudget.blogspot.fi AG
  • Make big money vamviplata.blogspot.sk w5
  • Your Prize Bonus vamviplata.blogspot.ch BY
  • I show how to earn a lot pomoshbudget.blogspot.com zc
  • Big earnings for you vamviplata.blogspot.ae ll
  • Special offer for you pomoshbudget.blogspot.de iV
  • Big earnings for you pomoshbudget.blogspot.ie UK
  • Make money from home ozarnicamolodka.blogspot.jp 0N
  • Special offer for you ozarnicamolodka.blogspot.pt 5J
  • Big earnings for you vamviplata.blogspot.tw Mz
  • ngXCPFfWwPlGx
  • Make big money pomoshbudget.blogspot.hk fR
  • Make big money ozarnicamolodka.blogspot.hk OF
  • Make cash online pomoshbudget.blogspot.nl 5F
  • Job online for you ozarnicamolodka.blogspot.in EP
  • Make big money pomoshbudget.blogspot.fr 6L
  • Big earnings for you pomoshbudget.blogspot.com 11
  • Earn money now pomoshbudget.blogspot.gr ta
  • Make money now ozarnicamolodka.blogspot.hk ZI
  • Receive a gift wqrugitisi.blogspot.no z0
  • Make money online vamviplata.blogspot.it Q5
未经允许不得转载: LIFE & SHARE - 王颜公子 » 正确的换行符让Linux和Windows愉快的玩耍

分享

作者

作者头像

Madman

如需 Linux / Python 相关问题付费解答,请按如下方式联系我

0 条评论

暂时还没有评论.

专题系列