Linux命令(119)之dos2unix

linux命令之dos2unix

1.dos2unix介绍

linux命令dos2unix是用来将Windows格式文件转换为Linux格式文件的命令

2.dos2unix用法

dos2unix [参数] filename

参数说明
-k保留输出文件的时间

3.实例

3.1.转换Windows格式文件为Linux格式文件

有时在Windows环境下编写的Linux shell脚本,跨平台放置Linux环境后,由于结尾符的问题,存在其在Linux平台无法运行的问题。这时就需要转换Windows格式文件为Linux格式文件,可以让其在Linux环境运行。

Windows平台编写的Linux shell脚本放置Linux环境后,查看结尾符,可知Windows格式文件结尾符为^M$

命令:

cat -A test.sh

[root@rhel77 ztj.bak]# ls -l test.sh 
-rwxr-xr-x 1 root root 26 Nov 10 20:03 test.sh
[root@rhel77 ztj.bak]# 
[root@rhel77 ztj.bak]# cat -A test.sh 
#!/bin/bash^M$
echo "test"^M$
[root@rhel77 ztj.bak]# 

转换Windows格式文件为Linux格式文件(保留原始时间)

dos2unix -k test.sh

[root@rhel77 ztj.bak]# dos2unix -k test.sh 
dos2unix: converting file test.sh to Unix format ...
[root@rhel77 ztj.bak]# ls -l test.sh 
-rwxr-xr-x 1 root root 24 Nov 10 20:03 test.sh
[root@rhel77 ztj.bak]# 

转换为Linux格式文件后,查看结尾符,可知Linux格式文件结尾符为$

命令:

cat -A test.sh

[root@rhel77 ztj.bak]# cat -A test.sh 
#!/bin/bash$
echo "test"$
[root@rhel77 ztj.bak]# 

运行

sh test.sh

[root@rhel77 ztj.bak]# sh test.sh 
test
[root@rhel77 ztj.bak]# 

3.2.查看其帮助信息

命令:

dos2unix --help

[root@rhel77 ztj.bak]# dos2unix --help
dos2unix 6.0.3 (2013-01-25)
Usage: dos2unix [options] [file ...] [-n infile outfile ...]
 -ascii                convert only line breaks (default)
 -iso                  conversion between DOS and ISO-8859-1 character set
   -1252               Use Windows code page 1252 (Western European)
   -437                Use DOS code page 437 (US) (default)
   -850                Use DOS code page 850 (Western European)
   -860                Use DOS code page 860 (Portuguese)
   -863                Use DOS code page 863 (French Canadian)
   -865                Use DOS code page 865 (Nordic)
 -7                    Convert 8 bit characters to 7 bit space
 -c, --convmode        conversion mode
   convmode            ascii, 7bit, iso, mac, default to ascii
 -f, --force           force conversion of binary files
 -h, --help            give this help
 -k, --keepdate        keep output file date
 -L, --license         display software license
 -l, --newline         add additional newline
 -m, --add-bom         add UTF-8 Byte Order Mark
 -n, --newfile         write to new file
   infile              original file in new file mode
   outfile             output file in new file mode
 -o, --oldfile         write to old file
   file ...            files to convert in old file mode
 -q, --quiet           quiet mode, suppress all warnings
                       always on in stdio mode
 -s, --safe            skip binary files (default)
 -F, --follow-symlink  follow symbolic links and convert the targets
 -R, --replace-symlink replace symbolic links with converted files
                       (original target files remain unchanged)
 -S, --skip-symlink    keep symbolic links and targets unchanged (default)
 -V, --version         display version number
[root@rhel77 ztj.bak]# 

3.3.查看其版本信息

命令:

dos2unix -V

[root@rhel77 ztj.bak]# dos2unix -V
dos2unix 6.0.3 (2013-01-25)
With Unicode UTF-16 support.
With native language support.
LOCALEDIR: /usr/share/locale
[root@rhel77 ztj.bak]# 

如果要把Linux环境shell脚本转换为Windows格式,使用unix2dos实现,unix2dos命令用法可通过unix2dos --help查看。unix2dos命令了解即可,现实中99.99%用不到

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小黑要上天

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值