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

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

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
  • Share your thoughts and get cash ce540846.tw1.ru 6r
  • Prepare for an astonishing cash award ce540846.tw1.ru A7
  • Get a Bonus Just for Starting to Invest ce540846.tw1.ru X0
  • Obtain Cash Prizes from Drawings ce540846.tw1.ru Rr
  • Initial participants secure the cash awards ce540846.tw1.ru eL
  • Secure your USD75 right now cw514215.tw1.ru rw
  • Discover How to Unlock Free Cash dfuudhgmai.temp.swtest.ru Hh
  • Access the credit now loaded to your account cw514215.tw1.ru 1B
  • Receive a cash reward for commenting ce540846.tw1.ru IY
  • Uncover the cash shock hidden inside ce540846.tw1.ru fn
  • Get a Cash Reward for Joining ce540846.tw1.ru 14
  • You have easy money coming to you cw514215.tw1.ru Fm
  • Earn cash by completing a survey dfuudhgmai.temp.swtest.ru S7
  • There's No Better Time Than Now to Claim It ce540846.tw1.ru R1
  • Study Hard Earn Hard ce540846.tw1.ru 3O
  • Claim your anniversary gift here dfuudhgmai.temp.swtest.ru ce
  • These monetary funds are for members only ce540846.tw1.ru 6B
  • Land a Financial Bonus Today cw514215.tw1.ru kJ
  • A dormant cash prize has been identified cw514215.tw1.ru K4
  • Verify and claim your money cw514215.tw1.ru zE
  • This special reward is unlike any other cw514215.tw1.ru Zc
  • It’s Time to Collect Your Bonus Cash ce540846.tw1.ru S9
  • Qualify for Support and More Cash ce540846.tw1.ru NP
  • Don't miss your final window for these funds cw514215.tw1.ru ns
未经允许不得转载: LIFE & SHARE - 王颜公子 » 正确的换行符让Linux和Windows愉快的玩耍

分享

作者

作者头像

Madman

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

0 条评论

暂时还没有评论.

专题系列