启动命令在shell脚本里面,启动时遇到了$'\r': command not found错误。
奇怪的是在测试环境的linux服务器上并没有这个问题。
解决方法:用vi/vim打开脚本,设置文件格式为unix。
vim start.sh
:set ff=unix
:wq
其中ff是fileformat的简写。
ps:
如果想设置为windows格式,则:set ff=dos
总结:
设置文件格式
windows格式:文章来源:https://www.toymoban.com/news/detail-603137.html
set fileformat=dos
#或者
set ff=dos
unix格式:文章来源地址https://www.toymoban.com/news/detail-603137.html
set fileformat=unix
#或者
set ff=unix
到了这里,关于linux和windows上执行shell脚本遇到了$‘\r‘: command not found的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!