概述
转载自:https://www.jb51.net/article/179414.htm
CentOS7运行.sh脚本提示syntax error: unexpected end of file的解决方法
CentOS 7运行.sh脚本提示syntax error: unexpected end of file。脚本是通过本地电脑的notepad++编辑之后用ftp上传到CentOS 7服务器上的。
错误原因:
shell脚本在本地电脑编辑的,格式是dos(可以用vi编辑该shell脚本,进入命令行模式,输入:set ff 回车即可看到左下角显示fileformat=dos),在dos/window下按一次回车键实际上输入的是“回车(CR)”和“换行(LF)”,而Linux/unix下按一次回车键只输入“换行(LF)”,所以本地修改的sh文件在CentOS上运行每行都会多了一个CR,因此就会报错syntax error: unexpected end of file。
解决方法:
解决方法很简单,用vi编辑器打开该shell脚本,进入命令行模式(CTRL+C),输入:set ff=unix之后wq保存退出即可。这时如果再通过set ff查看会发现fileformat=unix。
下面是其他网友的补充
我们在编辑Linux服务器上的文件时,如果直接在Linux环境下编辑的话,比较麻烦,大段粘贴格式比较乱,还得自己一行一行去调整,因此会选择用编辑器来编辑我们Linux环境下的文件,我用的是NodePad++,大家可以参考这篇https://www.jb51.net/softjc/712049.html来学习如何使用NodePad++来编辑Linux系统的文件。
今天我要说的重点是,我们在用NodePad++编辑完脚本文件并上传到服务器后,直接运行脚本报错的问题,比如我要在NodePad++编辑器中编辑下面这段脚本
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
A=`
ps
-C nginx --no-header |
wc
-l`
if
[ $A -
eq
0 ];
then
/usr/local/nginx/sbin/nginx
sleep
2
if
[ `
ps
-C nginx --no-header |
wc
-l` -
eq
0 ];
then
killall keepalived
fi
fi
|
先来说说第一个错误:syntax error: unexpected end of file,大家可以把上面那段脚本内容放到脚本文件nginx_check.sh当中(当然大家可以随便起个名字,后缀是.sh就可以了),需要注意的是最后一个"fi",默认是黑色字体,我们敲回车增加一行,这时最后那个"fi"颜色就变成蓝色了,如下图所示。
编辑完该脚本我们保存,自动就会上传到Linux服务器,下面我们便在Linux服务器执行该脚本(需要注意的是,该脚本文件一定要有执行权限,如果没有执行权限就使用chmod +x nginx_check.sh来给脚本增加执行权限),我们会看到如下所示的错误,提示结尾不合法。
[root@bhz004 keepalived]# sh ./nginx_check.sh
./nginx_check.sh: line 10: syntax error: unexpected end of file
[root@bhz004 keepalived]#
我们再来看另外一个错误:syntax error near unexpected token `fi',大家可以直接把脚本内容粘贴到脚本文件中,最后一个"fi"此时是黑色的,我们不用管它。
这时我们执行该脚本,会看到如下所示错误,提示第9行"fi"有问题。
1
2
3
4
|
[root@bhz004 keepalived]
# sh ./nginx_check.sh
.
/nginx_check
.sh: line 9: syntax error near unexpected token `
fi
'
.
/nginx_check
.sh: line 9: `
fi
'
[root@bhz004 keepalived]
#
|
上面两个问题都是由于.sh文件的格式为dos格式。而linux只能执行格式为unix格式的脚本。因为在dos/window下按一次回车键实际上输入的是“回车(CR)”和“换行(LF)”,而Linux/unix下按一次回车键只输入“换行(LF)”,所以修改的sh文件在每行都会多了一个CR,所以Linux下运行时就会报错找不到命令。
我们可以查看该脚本文件的格式,方法是使用命令:vim nginx_check.sh进入编辑文件界面,如下图所示。
直接输入":",然后在":"之后输入"set ff"如下图所示
回车即可看到脚本格式,如下图所示,可以看到当前脚本格式是dos。
我们需要把格式改为unix,方法是输入":set ff=unix",也可以输入":set fileformat=unix"如下图所示。
输入完之后,回车即可完成切换格式。然后我们再输入":set ff"来查看格式,如下图所示,可以看到当前脚本格式变成了我们想要的"unix"了。
这时我们再执行nginx_check.sh就没问题了,如下所示。
1
2
3
4
5
6
|
[root@bhz004 keepalived]
# sh ./nginx_check.sh
[root@bhz004 keepalived]
# ps -ef | grep nginx
root 3679 1 0 19:42 ? 00:00:00 nginx: master process
/usr/local/nginx/sbin/nginx
nobody 3681 3679 0 19:42 ? 00:00:00 nginx: worker process
root 3711 1898 0 20:23 pts
/0
00:00:00
grep
nginx
[root@bhz004 keepalived]
#
|
这篇文章就介绍到这了,基本上就是注意编码问题与换行问题,不能用文本编辑器。
<div class="art_xg">
<b>您可能感兴趣的文章:</b><ul><li><a href="/article/173757.htm" title="centOS6中使用crontab定时运行执行jar程序的脚本" target="_blank">centOS6中使用crontab定时运行执行jar程序的脚本</a></li><li><a href="/article/156279.htm" title="centos6.5配置ssh免秘钥登陆执行pssh命令的讲解" target="_blank">centos6.5配置ssh免秘钥登陆执行pssh命令的讲解</a></li><li><a href="/article/150013.htm" title="CentOS7如何执行PHP定时任务详解" target="_blank">CentOS7如何执行PHP定时任务详解</a></li><li><a href="/article/117241.htm" title="Centos 7下利用crontab定时执行任务详解" target="_blank">Centos 7下利用crontab定时执行任务详解</a></li><li><a href="/article/108874.htm" title="解决centos7 开机/etc/rc.local 不执行的问题" target="_blank">解决centos7 开机/etc/rc.local 不执行的问题</a></li><li><a href="/article/106528.htm" title="centos 设置定时任务执行指定脚本的方法" target="_blank">centos 设置定时任务执行指定脚本的方法</a></li><li><a href="/article/189501.htm" title="CentOS使用expect批量远程执行脚本和命令" target="_blank">CentOS使用expect批量远程执行脚本和命令</a></li></ul>
</div>
<p class="tip">如您对本文有所疑义或者有任何需求,请<a href="//shequ.jb51.net" target="_blank">点击访问脚本社区</a>,百万网友为您解惑!</p><div class="lbd_bot clearfix">
<a href="https://t.1yb.co/636q" target="_blank"><img src="https://files.jb51.net/image/msb800.jpg" alt="java" width="820"></a>
</div>
<p>原文链接:https://blog.csdn.net/u012453843/article/details/69803244/</p></div><div id="ewm"><div class="jb51ewm"><div class="fl"><img src="//files.jb51.net/skin/2018/images/jb51ewm.png"></div><div class="fr"><p>微信公众号搜索 “ <span>脚本之家</span> ” ,选择关注</p><p>程序猿的那些事、送书等活动等着你</p></div></div></div><!--endmain-->
<div class="tags clearfix">
<i class="icon-tag"></i>
<ul class="meta-tags">
<li class="tag item"><a href="http://common.jb51.net/tag/syntax/1.htm" target="_blank" title="搜索关于syntax的文章" rel="nofollow">syntax</a></li>
- error
- unexpected
</ul> </div> <div class="lbd clearfix"> <script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-6384567588307613" data-ad-slot="3921475131" data-adsbygoogle-status="done"><ins id="aswift_0_expand" style="display:inline-table;border:none;height:90px;margin:0;padding:0;position:relative;visibility:visible;width:728px;background-color:transparent;"><ins id="aswift_0_anchor" style="display:block;border:none;height:90px;margin:0;padding:0;position:relative;visibility:visible;width:728px;background-color:transparent;"><iframe id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;border:0;width:728px;height:90px;" sandbox="allow-forms allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-top-navigation-by-user-activation" width="728" height="90" frameborder="0" src="https://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-6384567588307613&output=html&h=90&slotname=3921475131&adk=2397501576&adf=4234509282&w=728&lmt=1602299788&psa=1&guci=2.2.0.0.2.2.0.0&format=728x90&url=https%3A%2F%2Fwww.jb51.net%2Farticle%2F179414.htm&flash=0&wgl=1&tt_state=W3siaXNzdWVyT3JpZ2luIjoiaHR0cHM6Ly9hZHNlcnZpY2UuZ29vZ2xlLmNvbSIsInN0YXRlIjowfV0.&dt=1602299172935&bpp=9&bdt=289&idt=83&shv=r20201007&cbv=r20190131&ptt=9&saldr=aa&abxe=1&cookie=ID%3D8ce90c5b5042003e-2295f090fac30098%3AT%3D1602295874%3ART%3D1602295874%3AS%3DALNI_MY7XpN9Xm1AvyxGS3Trm2MiOVitEw&prev_fmts=300x250%2C300x250%2C0x0&nras=1&correlator=3862343903242&frm=20&pv=1&ga_vid=1879980758.1602299173&ga_sid=1602299173&ga_hid=1037151436&ga_fc=0&iag=0&icsg=566970726481923&dssz=53&mdo=0&mso=8&u_tz=480&u_his=1&u_java=0&u_h=1080&u_w=1920&u_ah=1050&u_aw=1920&u_cd=24&u_nplug=3&u_nmime=4&adx=413&ady=5493&biw=1903&bih=979&scr_x=0&scr_y=1583&oid=3&psts=AGkb-H84lH4e1ShdM-15qgkSCEeX1xE29XZ1V6ezZoYdnY0D_BXSuwz8eNS3--gGVG4v&pvsid=1350266229157127&pem=832&ref=https%3A%2F%2Fwww.baidu.com%2Flink%3Furl%3DceGF7peyEwvmx_8ReEKLSDYyqb36vluPwJ_XRI5GgiNztU8IM6SApKNio-Pwlfk1CeD5vp97hIN2CF2pGw0rgK%26wd%3D%26eqid%3D815ab0340000d3b8000000065f812518&rx=0&eae=0&fc=896&brdim=0%2C0%2C0%2C0%2C1920%2C0%2C1920%2C1050%2C1920%2C979&vis=1&rsz=%7C%7CeEbr%7C&abl=CS&pfx=0&fu=8200&bc=31&ifi=1&uci=a!1&btvi=2&fsb=1&xpc=cflwz05FIw&p=https%3A//www.jb51.net&dtd=M" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" data-google-container-id="a!1" data-google-query-id="CLuw6u2HqewCFcLqUQodx1kACw" data-load-complete="true"></iframe></ins></ins></ins><script>(adsbygoogle = window.adsbygoogle || []).push({});</script> </div> <div id="shoucang"></div> <div class="xgcomm clearfix"> <h2>相关文章</h2> <ul><li class="lbd clearfix"><div id="_530cld9rl85" style=""><div id="molgtpwyso"><div style="margin:0px;"><div style="padding-top:0px;"><div class="heicetjfzqnwwiy" style="width:0px;height:0px;"></div><iframe width="820" frameborder="0" height="120" scrolling="no" src="https://pos.baidu.com/s?wid=820&hei=120&di=u4806172&ltu=https%3A%2F%2Fwww.jb51.net%2Farticle%2F179414.htm&psi=99f9a14f126fa90133217675ba49b1ea&dc=3&ti=CentOS7%E8%BF%90%E8%A1%8C.sh%E8%84%9A%E6%9C%AC%E6%8F%90%E7%A4%BAsyntax%20error%3A%20unexpected%20end%20of%20file%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95_li&ps=3935x366&drs=1&pcs=1903x979&pss=1903x5407&cfv=0&cpl=3&chi=1&cce=true&cec=GBK&tlm=1602299172&psr=1920x1080&par=1920x1050&pis=-1x-1&ccd=24&cja=false&cmi=4&col=zh-CN&cdo=-1&tcn=1602299173&dtm=HTML_POST&tpr=1602299172955&ari=2&ant=0&exps=110257,110009,111000,112027,110011&prot=2&dis=0&dai=1&dri=0&ltr=https%3A%2F%2Fwww.baidu.com%2Flink%3Furl%3DceGF7peyEwvmx_8ReEKLSDYyqb36vluPwJ_XRI5GgiNztU8IM6SApKNio-Pwlfk1CeD5vp97hIN2CF2pGw0rgK%26wd%3D%26eqid%3D815ab0340000d3b8000000065f812518"></iframe></div></div></div></div><script type="text/javascript" src="//jscode.jbzj.com/site/g/bx_d/production/hak_cq.js"></script>
-
Shell脚本经典之Fork炸弹的分析与预防
这篇文章主要给大家介绍了Shell脚本经典之Fork炸弹的分析与预防,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起看看吧。2017-06-06 -
Linux Shell循环中实现展示进度百分比的实现方法
这篇文章主要介绍了Linux Shell循环中实现展示进度百分比的实现方法的相关资料,这里提供实现方法及实例,需要的朋友可以参考下2017-08-08 -
Shell脚本实现根据文件的修改时间来分类文件
这篇文章主要介绍了Shell脚本实现根据文件的修改时间来分类文件,本文直接给出实现代码,需要的朋友可以参考下2015-07-07 -
解决VirtualBox中Ubuntu 14.04屏幕分辨率不能设置的问题
下面小编就为大家带来一篇解决VirtualBox中Ubuntu 14.04屏幕分辨率不能设置的问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-05-05 -
Nginx和PHP-FPM的启动、重启、停止脚本分享
这篇文章主要介绍了Nginx和PHP-FPM的启动、重启、停止脚本分享,脚本中包含start、stop、reload、restart等常用的管理方法,并可以加入系统服务然后使用servicem命令管理,需要的朋友可以参考下2014-12-12 -
Shell脚本实现自动安装zookeeper
这篇文章主要介绍了Shell脚本实现自动安装zookeeper,本文直接给出实现代码,需要的朋友可以参考下2015-01-01 -
Shell编程中的特殊变量之进程状态变量介绍
这篇文章主要介绍了Shell编程中的特殊变量之进程状态变量介绍,本文讲解了$$、$!、$?、$@、$_这些特殊变量,需要的朋友可以参考下2014-12-12 -
判断文件是否存在的shell脚本代码
判断文件是否存在的shell脚本,有详细的注释,很不错,有需要的朋友不妨参考下2013-02-02 -
Csh的基本语法介绍
这篇文章主要介绍了Csh的基本语法,讲解了变量、数组、命令替换、命令行参数、IO重定向和管道等内容,需要的朋友可以参考下2014-11-11 -
linux 查找大目录和大文件的方法(推荐)
下面小编就为大家带来一篇linux 查找大目录和大文件的方法(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-03-03 </div> <a href="#comments"></a> <div id="comments"> <h2>最新评论</h2> <div class="pd5"><div id="SOHUCS" sid="art_179414"></div></div> </div> </div>
最后
以上就是直率小蜜蜂为你收集整理的linux下运行.sh脚本提示syntax error: unexpected end of file的解决方法CentOS7运行.sh脚本提示syntax error: unexpected end of file的解决方法的全部内容,希望文章能够帮你解决linux下运行.sh脚本提示syntax error: unexpected end of file的解决方法CentOS7运行.sh脚本提示syntax error: unexpected end of file的解决方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复