Hellos
To remove this, open your file in vi editor and type
:%s/(ctrl-v)(ctrl-m)//g
OR
:%s/^M//g
Here %s is search and replace command in VI
^M is need to replace
Enter text between // which you want there
and
finally g is using for all occurrences.
Cheers!
To remove this, open your file in vi editor and type
:%s/(ctrl-v)(ctrl-m)//g
OR
:%s/^M//g
Here %s is search and replace command in VI
^M is need to replace
Enter text between // which you want there
and
finally g is using for all occurrences.
Cheers!
No comments:
Post a Comment