很多^M在代码行的后面
by
at 2012-04-06 05:11:18
original http://hlee.iteye.com/blog/1476195
在git diff的时候发现
可能是Windows开发工具搞上来的,因为有不一样的换行回车
解决办法是
vim :set fileformat=unix :%s/^M//g :%s/\r//g:w
引用
dos2unix
perl -pie 's/\r//g' filename.txt
perl -pie 's/\r//g' filename.txt
sed s/\r// hello.txt > helloUNIX.txt dos2unix hello.txt helloUNIX.txt cat hello.txt | tr -d \r > helloUNIX2.txt
<br><br>
<span style="color:red">
<a href="http://hlee.iteye.com/blog/1476195#comments" style="color:red">已有 <strong>0</strong> 人发表留言,猛击->><strong>这里</strong><<-参与讨论</a>
</span>
<br><br><br>
ITeye推荐