记录Linux shell脚步中CRLF和LF问题
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1.使用工具:nodePad++
2.问题:用nodePad++写完shell脚步后在执行机执行时,各种报错,未预期的符合,未正常的结尾等等.....
3.查找问题原因:
(1) cat -v test.sh ,查看脚步内容,发现回车的地方有^M;原来是换行符的问题
(2)用nodePad++,打开文本,
中文版查看方式 : 视图->显示符号->显示尾号;
英文版查看方式 :
(3)问题根本原因: window上换行符为CRLF ,而Linux换行符为 LF。说人话就是,Windos上换行是 \r\n ,Linux上换行是\r
4.修改问题方法:
(1) 将\r\n 替换为 \r
(2)在Linux上使用vim 编辑该脚本文件,set ff =unix,将文件格式设置为unix
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)