欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关于shell上面语法和windows编辑器差异造成问题解决

程序员文章站 2022-05-03 12:50:33
...

类似的问题有:
1.在windows上换行符导致在ubuntu上不识别
2.syntax error: unexpected end of file错误类型
3.数组的常规定义 arr=(1 3 5) 会被认为字符串
解决办法:

vim test.sh
:set fileformat=unix
:wq

也可以安装插件的方式:

yum -y install dos2unix
dos2unix test.sh

最终运行脚本就可以了

bash test.sh