Thingy Ma Jig is the blog of Nicholas Thompson and contains any useful tips, sites and general blog-stuff which are considered interesting or handy!
Posted on 25 November 2010 in
tips
linux
How to
geek
code
Drupal
Sometimes, when you're running coder on a module, you'll get a lot of errors complaining about Windows line endings. This is because you should set your editor to use Unix Line endings to be consistent with all developers. See the Drupal Coding Standards for more details.
Below is a handy bash script which will help you batch convert many files from DOS to Unix line endings.
grep -lIUr "^M" . | xargs sed -i 's/^M//'
First up, we use Grep to find ^M
(which you can produce using Ctrl+V and then Ctrl+M). This is a special code for Carriage Return (Windows uses CRLF, Unix uses just LF).
-l
-I
-U
-r
Next up, we pipe that result set into the sed
command.
-i
-ibak
which would create a backup using the supplied suffix.'s/^M//'
This seemed to work really well for me - please post below if you have any alternative/better ways of doing this!
Note: I did try to use dos2unix
however this did not remove a trailing ^M
for some reason.