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

syntax error: unexpected end of file。shell脚本执行报错

程序员文章站 2022-05-30 16:38:21
...

windows下编写shell脚本,执行后报错

原因是编码方式错误,windows写shell,在linux执行报错
		syntax error: unexpected end of file
	修改
		vim serverDeploy.sh
		:set fileformat=unix //设置编码方式
		:wq
相关标签: linux linux shell