Linux 执行 Shell脚本报错,“syntax error: unexpected end of file” 原因及处理
程序员文章站
2022-05-30 16:38:39
...
原因
在windows下编写shell脚本回车符是\n\r,而linux下的回车符是\n,所以在linux下运行脚本的时候会报错。
解决办法
vim start.sh
:set fileformat=unix
:wq
或者使用 dos2unix 命令将 windows 文件转换为 unix 格式(dos2unix需要安装:yum -y install dos2unix)
注意两点
- 第一行:#!/bin/bash
- 将文档格式转换为unix
使用 notepad++ 修改
将 CRLF 变为 LF,这里的 CR 表示回车,LF 表示换行
双击右下角 Windows(CRLF),切换成 Unix(LF)
上一篇: webpack之打包项目
推荐阅读
-
shell脚本报错syntax error: unexpected end of file
-
windows--Linux 执行Shell脚本报错 “syntax error: unexpected end of file”
-
linux ubuntu bash shell报错 xxx.sh: Syntax error: end of file unexpected (expecting “then“)
-
Linux 执行 Shell脚本报错,“syntax error: unexpected end of file” 原因及处理
-
syntax error: unexpected end of file。shell脚本执行报错
-
[Linux]Shell脚本“syntax error: unexpected end of file”报错及处理