ThingyMaJig

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!

Connect

LinkedIn GitHub

Topics

announcement 25 apache 3 Apple 1 bash 8 code 7 cool 30 Days Out 8 Dark Basic Pro 4 design 12 doctor who 1 Drupal 74 E4600 1 EOS 400D 3 firefox 2 Flickr 3 free 21 games 5 geek 38 git 2 GreaseMonkey 1 hardware 7 Homebrew 1 How to 37 humour 5 iphone 1 javascript 1 jquery 1 K800i 6 k850i 4 lighttpd 3 linux 33 mac 9 miscellaneous 4 mobile phone 9 music 4 mysql 8 n73 1 n95 1 New Relic 1 Ogre3D 1 OS X 2 performance 3 photos 10 programming 40 Quicksilver 1 review 19 security 3 SEO 6 software 12 svn 2 technology 4 tip 7 tips 10 tv 3 video 3 vim 7 webdev 2 websites 33 wii 1 windows 1 YADS 10

Fixing Dos Line Endings

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
This tells grep to halt searching once its found the first instance - we only need 1 result per file.
-I
This tells grep to treat binary files as if there was no matching data
-U
This tells grep to treat the file as a binary file. Grep usually tries to guess the file type. If it guesses text, it will remove the CR characters from line endings to help keep Regex consistent across operating systems.
-r
This tells grep to be recursive

Next up, we pipe that result set into the sedcommand.

-i
This tells sed that we should edit all files in-place. If you like, you can change this to -ibakwhich would create a backup using the supplied suffix.
's/^M//'
This is a regular expressions find-and-replace. This tells sed to find all ^M characters (which are CR (Carriage Return) characters) and replace them with nothing (ie remove them).

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 ^Mfor some reason.