电子说
- 当一个文件在Windows和Linux上交替操作后,经常遇到一些莫名其妙的问题,如shell脚本无法执行,找不到shell脚本等问题,本文谨就这一问题做一总结,供各位参考;
- 本文作者: 花神庙码农
- 博客地址,https://blog.csdn.net/qxhgd。
后文仅以test-dos.sh文件为例来说明,具体内容如下:
#!/bin/bash
echo "Hello World !"
[qxhgd@localhost crlf]$ ./test-dos.sh
-bash: ./test.sh: /bin/bash^M: bad interpreter: No such file or directory
make[3]: ./mksh: Command not found
[qxhgd@localhost crlf]$ cat -v test-dos.sh
#!/bin/bash^M
echo "Hello World !"^M
显示Tab:
[qxhgd@localhost crlf]$ cat -T test-dos.sh
#!/bin/bash
^Iecho "Hello World !"
[qxhgd@localhost crlf]$ od -c test-dos.sh
0000000 # ! / b i n / b a s h
e c h
0000020 o " H e l l o W o r l d !
0000040 "
0000041
也可以和cat配合使用:
cat test-dos.sh| od -c
[qxhgd@localhost crlf]$ hexdump -c test-dos.sh
0000000 # ! / b i n / b a s h
e c h
0000010 o " H e l l o W o r l d !
0000020 "
0000021
状态栏下会显示:
"test-dos.sh" [noeol][dos] 2L, 33B
命令模式下执行set ff:
fileformat=dos
-- 首先使用gedit打开文件:
[qxhgd@localhost crlf]$ gedit test-dos.sh
-- 搜索 ,如果搜索到了就表示是DOS格式:
可以利用编辑器修改,如Visual Studio Code,点击状态栏右下方的CRLF,选择“行尾序列”可修改为LF的格式;
有的编辑器,如Notepad2,有Line Endings可供选择:
利用支持扩展搜索的编辑器,如Notepad++,可将 替换掉:
[qxhgd@localhost crlf]$ dos2unix test-dos.sh
dos2unix: converting file test-dos.sh to Unix format ...
[qxhgd@localhost crlf]$ dos2unix -n test-dos.sh test-unix.sh
dos2unix: converting file test-dos.sh to file test-unix.sh in Unix format ...
[qxhgd@localhost crlf]$ fromdos test-dos.sh
-- 转换一个文件:
sed ‘s/^M//’ test-dos.sh> test-unix.sh
-- 转换多个文件:
find ./ -type f print0 | xargs -0 sed -i 's/^M$//'
-- 1、vi test-dos.sh-- 2、:%s/^M//g或:%s/ //g
-- 3、esc退出 :wq保存退出
其中^M 必须是同时按 Ctrl+V+M(按住Ctrl键,然后依次V、M键)或依次按Ctrl + V然后Ctrl + M,表示回车。
tr -d "15" test-dos.sh
cat test-dos.sh|tr -d ‘/r' > test-unix.sh
tr -d '
' < test-dos.sh > test-unix.sh
cat test-dos.sh | perl -pe ‘~s/
//g’ > test-unix.sh
perl -p -e 's/
//g' test-dos.sh> test-unix.sh
perl -pi -e 's/
/
/g' test-dos.sh
原文标题:一文搞清UNIX/Linux与Windows文件换行符格式差异
文章出处:【微信公众号:一口Linux】欢迎添加关注!文章转载请注明出处。
全部0条评论
快来发表一下你的评论吧 !