Results 1 to 6 of 6

Thread: What is the easiest way to convert unix/linux text files to DIS/Win text files?

  1. #1
    Join Date
    Jan 2006
    Posts
    115

    What is the easiest way to convert unix/linux text files to DIS/Win text files?

    It is known that the line endings/carriage returns in text files under Unix/linux usually differ from those under DOS/Windows XP. So lets say I got a text file with unix style line feeds. So what is going to be the easiest way to convert all line endings to Windows XP Style? Thanks for any information in advance.

  2. #2
    Join Date
    Jan 2006
    Posts
    605

    Re: What is the easiest way to convert unix/linux text files to DIS/Win text files?

    You can try to get the Unix2Dos tool which is a tool to convert line breaks in a text file from Unix format (Line feed) to DOS format (carriage return + Line feed) and vice versa. Download it by searching it on the net.

  3. #3
    Join Date
    Nov 2005
    Posts
    625

    Re: What is the easiest way to convert unix/linux text files to DIS/Wintext files?

    You can also get AutoIt which is a freeware BASIC-like scripting language designed for automating the Windows GUI and general scripting. It uses a combination of simulated keystrokes, mouse movement and window/control manipulation in order to automate tasks in a way not possible or reliable with other languages (e.g. VBScript and SendKeys).

  4. #4
    Join Date
    Dec 2004
    Posts
    420

    Re: What is the easiest way to convert unix/linux text files to DIS/Win text files?

    There is an option in Unix to write text files with CRLF at the end of each line. Alternatively you could open the file with Word, then save it as a text file. You will be prompted to specify the EOL string, i.e. CRLF.

  5. #5
    Join Date
    Nov 2005
    Posts
    403

    Re: What is the easiest way to convert unix/linux text files to DIS/Win text files?

    You can use the VBScript file on the desktop. Unix has one variation. Some Windows files (like Word docs) have another variation. The standard in Windows is to end the line with ASCII characters 13-10. (Carriage return - line feed). Just paste the below text to Notepad and save it as a .vbs file, you can just drop any file onto it and have it fixed. (Note that in some cases on XP you may need to adjust security to run a .vbs file.)

    '---------------- start text of vbs file ------------

    Dim fso, ts, s, arg, fil, fpath, s1
    Set fso = CreateObject("Scripting.FileSystemObject")
    arg = WScript.arguments.item(0)
    Set ts = fso.OpenTextFile(arg, 1, False)
    s = ts.ReadAll
    ts.Close
    Set ts = Nothing

    s1 = Replace(s, vbCrLf, vbCr, 1, -1, 0)
    s1 = Replace(s1, vbLf, vbCr, 1, -1, 0)
    s1 = Replace(s1, vbCr, vbCrLf, 1, -1, 0)

    Set ts = fso.CreateTextFile(arg, True)
    ts.Write s1
    ts.Close
    Set ts = Nothing
    Set fso = Nothing
    MsgBox "All done", 64, "File fixed"

    ' -------- end vbs file ---------------

    Another variation, if you want to save the edited text
    to a different file, replace the line:

    Set ts = fso.CreateTextFile(arg, True)

    with:

    Set ts = fso.CreateTextFile(arg & ".txt", True)

  6. #6
    Join Date
    Oct 2005
    Posts
    449
    There is another one called Dos2unix that includes utilities to convert text files with DOS or MAC line breaks to Unix line breaks and vice versa. It is an update of Benjamin Lin's implementations. Get it by searching on the web and install it in your pc.

Similar Threads

  1. Convert MP3 to text with Speech to text in Word.
    By Ashish Goenkar in forum MS Office Support
    Replies: 1
    Last Post: 04-02-2013, 11:19 AM
  2. How to convert image text into a text file
    By Wadee in forum Windows Software
    Replies: 5
    Last Post: 02-12-2010, 06:33 PM
  3. How to read 2 text files and write it into one
    By Juaquine in forum Software Development
    Replies: 4
    Last Post: 18-02-2010, 06:05 PM
  4. Vba import text files
    By Naval in forum Software Development
    Replies: 1
    Last Post: 24-03-2009, 11:35 PM
  5. How to encrypt & decrypt text or files in Vb dot net?
    By ArunJ in forum Software Development
    Replies: 4
    Last Post: 27-02-2009, 09:01 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,419,220.48321 seconds with 17 queries