码迷,mamicode.com
首页 > 其他好文 > 详细

/usr/bin/perl^M: bad interpreter: No such file or directory

时间:2017-05-19 14:30:06      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:服务端   file   local   

1、web显示

技术分享

2、nagios服务端测试

[root@nagiosserver objects]# /usr/local/nagios/libexec/check_nrpe -H 10.0.0.10 -c check_mem
NRPE: Unable to read output


3、nagios客户端测试

[root@apache ~]#/usr/local/nagios/libexec/check_nrpe -H 127.0.0.1-c check_mem
NRPE: Unable to read output

[root@apache ~]# /usr/local/nagios/libexec/check_memory.pl -w 6% -c 3%
-bash: /usr/local/nagios/libexec/check_memory.pl: /usr/bin/perl^M: bad interpreter: No such file or directory


4、解决方法:

[root@apache ~]# sed -i ‘s/\r$//‘ /usr/local/nagios/libexec/check_memory.pl
[root@apache ~]# /usr/local/nagios/libexec/check_memory.pl -w 6% -c 3%
CHECK_MEMORY OK - 384M free | free=403628032b;29877288.96:;14938644.48:


5、原因:

在*nix系统下使用Perl脚本有时会遇到如下错误:
/usr/bin/perl^M: bad interpreter: No such file or directory
最常见的原因是因为该脚本在windows系统下进行了编辑。
windows系统下的换行符是\r\n,而unix下面是只有\n的。如果要解决这个问题,只要去掉\r即可。


第一种解决方案是用sed(假设出问题的脚本名叫filename):
sed -i ‘s/\r$//‘ filename


这种解决方案适合简单的ASCII文件形式。
如果情况再复杂些,比方说filename是Unicode文件,可能会引入了Unicode中某些新的换行符;
另外有时候\r和\n在某些系统上对应的字符编码并不一致。如果再碰上垂直制表符 0x0B 和进纸符 0x0C 就更麻烦了。




好在Perl提供了另一种解决方案:
perl -p -i -e "s/\R/\n/g" filename


这里用到了从Perl 5.10开始引入的\R这个字符组,用来匹配各种换行符,我们只要方便地将其替换为\n就可以了。
同时也没有必要用脚本文件来实现,只需要在shell里执行这样一行命令就行了。
其中-p表示逐行对filename进行操作,-i表示原地操作,覆盖原始文件,-e则是表示执行后面的语句。


本文出自 “花开如昔” 博客,转载请与作者联系!

/usr/bin/perl^M: bad interpreter: No such file or directory

标签:服务端   file   local   

原文地址:http://sunrisenan.blog.51cto.com/10217407/1927488

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!