www.LinuxHowtos.org

edit this article

Converting Text Files

This tip shows you how to convert files from Windows format to UNIX format and vice versa. This can be handy if you've ever opened a file that was created in Windows and found your screen full of of ^M characters at the end of every line.

Code Listing 1: Converting files with tr and sed

// Convert from DOS/windows to unix 
% tr -d '\015'  win.txt > unix.txt 
 
// Convert from unix to DOS/windows 
% sed -e 's/$/\r/' unix.txt > win.txt

From http://www.gentoo.org/news/en/gwn/20040223-newsletter.xml


rate this article:
current rating: average rating: 1.4 (19 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back