Tagged Questions
34
votes
12answers
28k views
How do I convert dos files to linux files in vim?
If I open files I created in windows, the lines all end with ^M.
How do I delete them all in once?
4
votes
5answers
795 views
How to find a windows end of line (EOL) character
I have several hundred GB of data that I need to paste together using the unix paste utility in Cygwin, but it won't work properly if there are windows EOL characters in the files. The data may or may ...
1
vote
2answers
425 views
dos2unix command
I have this script
#!/bin/sh
for i in `ls -R`
do
echo "Changing $i"
fromdos $i
done
I want to remove "^M" charcaters from many files which are in more subdirectories. I got this:
fromdos: ...