linux命令将doc转换为linux
Posted 794536524
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux命令将doc转换为linux相关的知识,希望对你有一定的参考价值。
shell脚本报错:-bash: xxx: /bin/sh^M: bad interpreter: No such file or directory
- #!/bin/sh
- echo "test shell "
具体报错信息如下:
- [[email protected] test]# ./test.sh
- -bash: ./test.sh: /bin/sh^M: bad interpreter: No such file or directory
主要原因是test.sh是在windows下编辑然后上传到linux系统里执行的。.sh文件的格式为dos格式。而linux只能执行格式为unix格式的脚本。
可以通过vi编辑器来查看文件的format格式。步骤如下:
1.首先用vi命令打开文件
- [[email protected] test]# vi test.sh
2.在vi命令模式中使用 :set ff 命令
可以看到改文件的格式为dos
3.修改文件format为unix
方法一:使用vi修改文件format
命令:set ff=unix
执行完后再通过set ff命令查看文件格式,结果如下:
方法二:直接使用dos2unix命令修改
- [[email protected] test]# dos2unix test.sh
- dos2unix: converting file test.sh to UNIX format ...
修改完后再次执行./test.sh,执行正确:
- [[email protected] test]# ./test.sh
- test shell
以上是关于linux命令将doc转换为linux的主要内容,如果未能解决你的问题,请参考以下文章