1. 程式人生 > >修改windows文件的換行符

修改windows文件的換行符

系統 二進制 light bash 應用場景 python col orm root

應用場景:

在辦公中,有可能存在,某些命令腳本使用windows下的文本編輯器進行編寫

當放到測試環境的Linux中時,運行報錯  

需要使用的軟件:xxd hexdump dos2unix

1、運行windows上編寫好的sh腳本

[root@hlrgm ~]# bash test.sh
test.sh: line 2: $‘\r‘: command not found
‘f: invalid option -- ‘
Try ‘df --help‘ for more information.
test.sh: line 4: $‘\r‘: command not found
‘s: invalid option -- ‘
Try ‘ls --help‘ for more information.
test.sh: line 6: $‘\r‘: command not found  

2、查看sh腳本

[root@hlrgm ~]# cat test.sh
#!/bin/bash

df -h

ls -l
  

3、查看文本的二進制

[root@hlrgm ~]# xxd test.sh 
0000000: 2321 2f62 696e 2f62 6173 680d 0a0d 0a64  #!/bin/bash....d
0000010: 6620 2d68 0d0a 0d0a 6c73 202d 6c0d 0a0d  f -h....ls -l...
0000020: 0a                                       .  

4、查看文本的十六進制

[root@hlrgm ~]# hexdump test.sh
0000000 2123 622f 6e69 622f 7361 0d68 0d0a 640a
0000010 2066 682d 0a0d 0a0d 736c 2d20 0d6c 0d0a
0000020 000a                                   
0000021  

5、使用dos2unix修改文本

註意:dos2unix需要安裝後使用,默認系統未安裝

[root@hlrgm ~]# dos2unix test.sh
dos2unix: converting file test.sh to Unix format ...  

6、查看修改後文件的二進制和十六進制

# 二進制
[root@hlrgm ~]# xxd test.sh 
0000000: 2321 2f62 696e 2f62 6173 680a 0a64 6620  #!/bin/bash..df 
0000010: 2d68 0a0a 6c73 202d 6c0a 0a              -h..ls -l..

# 十六進制
0000000 2123 622f 6e69 622f 7361 0a68 640a 2066
0000010 682d 0a0a 736c 2d20 0a6c 000a          
000001b  

7、對比

windows:二進制下換行符號:0d0a

linxu:二進制下換行符號:0a  

修改windows文件的換行符