码迷,mamicode.com
首页 > Windows程序 > 详细

【原创】Linux基础之去掉windows中的\r

时间:2019-05-30 16:10:59      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:linux   执行   脚本   comm   解决   test   lock   shel   方法   

linux换行为\n,windows换行为\r\n,windows环境编辑的shell脚本在linux下执行会报错:

line 2: $‘\r‘: command not found

查看

# cat -A test.sh
#!/bin/sh^M$
^M$
...

解决方法:

vi

1)替换

:%s/^M//g

2)设置文件格式

:set fileformat=unix

 

【原创】Linux基础之去掉windows中的\r

标签:linux   执行   脚本   comm   解决   test   lock   shel   方法   

原文地址:https://www.cnblogs.com/barneywill/p/10950019.html

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