Linux命令之dos2unix - 将DOS格式文本文件转换成UNIX格式
用途说明
dos2unix命令用来将DOS格式的文本文件转换成UNIX格式的(DOS/MAC to UNIX text file format converter)。DOS下的文本文件是以\r\n作为断行标志的,表示成十六进制就是0D 0A。而Unix下的文本文件是以\n作为断行标志的,表示成十六进制就是 0A。DOS格式的文本文件在Linux底下,用较低版本的vi打开时行尾会显示^M,而且很多命令都无法很好的处理这种格式的文件,如果是个shell脚本,。而Unix格式的文本文件在Windows下用Notepad打开时会拼在一起显示。因此产生了两种格式文件相互转换的需求,对应的将UNIX格式文本文件转成成DOS格式的是unix2dos命令。
常用参数
将DOS格式文本文件转换成Unix格式,最简单的用法就是dos2unix直接跟上文件名。
格式:dos2unix file
如果一次转换多个文件,把这些文件名直接跟在dos2unix之后。(注:也可以加上-o参数,也可以不加,效果一样)
格式:dos2unix file1 file2 file3
格式:dos2unix -o file1 file2 file3
上面在转换时,都会直接在原来的文件上修改,如果想把转换的结果保存在别的文件,而源文件不变,则可以使用-n参数。
格式:dos2unix oldfile newfile
如果要保持文件时间戳不变,加上-k参数。所以上面几条命令都是可以加上-k参数来保持文件时间戳的。
格式:dos2unix -k file
格式:dos2unix -k file1 file2 file3
格式:dos2unix -k -o file1 file2 file3
格式:dos2unix -k -n oldfile newfile
注:unix2dos命令的使用方式与dos2unix命令的类似。
使用示例
示例一 DOS格式文本文件在Linux下的表现, 现在有一个脚本文件test.sh,是在Linux下用vi编辑的
-
[root@sobey wesoft]# cat test.sh
-
#!/bin/bash
-
usage () {
-
cat <<-END_USAGE
-
dsd
-
dsdsd
-
dsd
-
END_USAGE
-
}
-
usage
-
[root@sobey wesoft]#
-
[root@sobey wesoft]# unix2dos test.sh
-
unix2dos: converting file test.sh to DOS format ...
-
-
[root@sobey wesoft]# ./test.sh
-
-bash: ./test.sh: /bin/bash^M: bad interpreter: No such file or directory
-
-
[root@sobey wesoft]# cat test.sh
-
#!/bin/bash
-
usage () {
-
cat <<-END_USAGE
-
dsd
-
dsdsd
-
dsd
-
END_USAGE
-
}
-
usage
DOS格式的脚本文件时无法解释执行的,因为脚本文件的第一行是用来指定解释器的,Linux系统认为解释器是/bin/sh^M,而不是/bin/sh。
。
我们来通过Linux下的一些命令来看一下DOS格式文件的真面目
-
[root@sobey wesoft]# cat -v test.sh
-
#!/bin/bash^M
-
usage () {^M
-
cat <<-END_USAGE^M
-
dsd^M
-
dsdsd^M
-
dsd^M
-
END_USAGE^M
-
}^M
-
usage^M
hexdump -C可以看到文件每个字节的十六进制表示。)折叠或打开
-
[root@sobey wesoft]# hexdump -C test.sh
-
00000000 23 21 2f 62 69 6e 2f 62 61 73 68 0d 0a 75 73 61 |#!/bin/bash..usa|
-
00000010 67 65 20 28 29 20 7b 0d 0a 63 61 74 20 3c 3c 2d |ge () {..cat <<-|
-
00000020 45 4e 44 5f 55 53 41 47 45 0d 0a 64 73 64 0d 0a |END_USAGE..dsd..|
-
00000030 64 73 64 73 64 0d 0a 64 73 64 0d 0a 45 4e 44 5f |dsdsd..dsd..END_|
-
00000040 55 53 41 47 45 0d 0a 7d 0d 0a 75 73 61 67 65 0d |USAGE..}..usage.|
-
00000050 0a |.|
-
00000051
-
-
[root@sobey wesoft]#
现在我们把DOS格式改回Unix格式的,看看效果。)折叠或打开
-
[root@sobey wesoft]# dos2unix test.sh
-
dos2unix: converting file test.sh to UNIX format ...
-
[root@sobey wesoft]# ./test.sh
-
dsd
-
dsdsd
-
dsd
示例二 dos2unix -k和dos2unix -n的使用示例
-
[root@sobey wesoft]# cat <<EOF >1.txt
-
> 1
-
> 2
-
-
> 3
-
> EOF
-
-
[root@sobey wesoft]# file 1.txt
-
1.txt: ASCII text
-
-
[root@sobey wesoft]# ls -l 1.txt
-
-rw-r--r-- 1 root root 6 11-14 09:08 1.txt
-
-
[root@sobey wesoft]# date
-
2010年 11月 14日 星期日 09:28:42 CST
-
-
[root@jfht ~]# unix2dos -k 1.txt <== 保持文件时间戳
-
unix2dos: converting file 1.txt to DOS format ...
-
-
[root@sobey wesoft]# ls -l 1.txt
-
-rw-r--r-- 1 root root 9 11-14 09:08 1.txt
-
-
[root@jfht ~]# dos2unix -n 1.txt 2.txt <== 将1.txt转换到2.txt
-
dos2unix: converting file 1.txt to file 2.txt in UNIX format ...
-
-
[root@sobey wesoft]# ls -l 1.txt 2.txt
-
-rw-r--r-- 1 root root 9 11-14 09:08 1.txt
-
-rw-r--r-- 1 root root 6 11-14 09:30 2.txt
-
-
[root@sobey wesoft]# file 1.txt 2.txt
-
1.txt: ASCII text, with CRLF line terminators
-
2.txt: ASCII text
-
-
[root@sobey wesoft]# cat -v 1.txt
-
1^M
-
2^M
-
3^M
-
-
[root@sobey wesoft]# cat -v 2.txt
-
1
-
2
-
3
-
[root@sobey wesoft]#
阅读(784) | 评论(0) | 转发(0) |