About dos2unix conversion program

learn more… | top users | synonyms

1
vote
1answer
46 views

Portable convert line endings

I have been using d2u to convert line endings. After installing Puppy Linux I noticed that it does not come with d2u, but dos2unix. Then I noticed that Ubuntu is missing both by default. Then I read ...
0
votes
2answers
32 views

Text files appearing as bynaries on Mac Os X

I have >5000 textual files generated in Windows from PDF files that I need to process on a Mac OS X machine. I run dos2unix on all of them to correct the newline and to convert the encoding from ...
1
vote
2answers
53 views

find grep exclude some file names for dos2unix

so far I have gotten this far: prompt$ find path/to/project -type f | grep -v '*.ori|*.pte|*.uh|*.mna' | xargs dos2unix 2> log.txt However, the files with extensions .ori, .pte, .uh and .mna ...
1
vote
2answers
102 views

How to make Maven checking the source end-of-line?

I would like to enforce Unix style end-of-line (\n) in Java sources of our projects for consistency reasons. As many of us work under Windows, most IDEs are configured by default to use Windows style ...
0
votes
3answers
273 views

How to convert some files from dos format to unix

I know how to change file format from dos to unix by use dos2unix, but how can I change ALL the files will under a directory tree. Can dos2unix change files recursively? for example, I have some ...
0
votes
2answers
398 views

\377\376 Appended to file (Windows -> Unix)

Morning All - I have a problem and the solution has alluded me for a few days now. I have an SSIS package that performs the following. 1. Run SQL script 2. Export results to flat file (UTF-8 ...
4
votes
2answers
3k views

dos2Unix command on entire directory

i have to convert an entire directory using dos2unix command and i am not able to figure it out. please help me. thanks in advance. regards, Vivek
4
votes
4answers
1k views

How to automate dos2unix using shell script?

I have a bunch of xml files in a directory that need to have the dos2unix command performed on them and new files will be added every so often. I Instead of manually performing dos2unix command on ...
2
votes
2answers
926 views

Batch convert text files from LF line endings to CRLF

I have a vb.net (visual studio 2010) project that is version controlled with git (1.7.10.msysgit.1). I made a mistake of leaving core.autocrlf to true in git. Now I have set core.autocrlf to false, ...
1
vote
2answers
2k views

How to convert files from Dos to Unix in java

I am having several files , which i want to convert to Dos2Unix. Is there any API or method which will help me to do this. Can any one suggest me the easier way to do this. Thanks in advance.
3
votes
3answers
2k views

echo “string” > file in Windows PowerShell appends non-printable character to the file

In Windows PowerShell: echo "string" > file.txt In Cygwin: $ cat file.txt :::s t r i n g $ dos2unix file.txt dos2unix: Skipping binary file file.txt I want a simple "string" in the file. How ...
2
votes
1answer
102 views

Ear encoding inside the archive

These days, I drove crazy to deploy an ear on unix enviroment using Weblogic. At the end I realized by using (cat -v file.properties) that such file was full of ^M at the end of the line. This ...
1
vote
2answers
2k 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: ...
7
votes
6answers
4k 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 ...
2
votes
2answers
1k views

Checking for DOS files on UNIX

I want to check whether any DOS files exist in any specific directory. Is there any way to distinguish DOS files from UNIX apart from the ^M chars ? I tried using file, but it gives the same output ...
6
votes
3answers
4k views

Git: Removing carriage returns from source-controlled files

I've got a Git repository that has some files with DOS format (\r\n line endings). I would like to just run the files through dos2unix (which would change all files to UNIX format, with \n line ...
15
votes
2answers
9k views

Eclipse Editor: How to change file format from Dos to Unix

I am using eclipse editor to work on my remote files it appears that eclipse editor is set to dos file format, I do not know how to find fileformat set in eclipse editor, but I want it to be set on ...
4
votes
3answers
3k views

Convert files to UNIX format using Maven

I have an application that is developed in a Windows environment. The application itself gets deployed to a Linux environment. Each time I deploy this application I have to convert executable files to ...
14
votes
2answers
663 views

Port dos2unix to brainfuck

I got into an argument over on SuperUser.com about useless answers and found myself challenging the other poster to answer the question in brainfuck. He didn't take me up on it, but now I'm curious. ...
7
votes
2answers
4k views

unix2dos (or dos2unix) in ant

How do I do unix2dos (or dos2unix) with ant. I.e. I want to change the newlines from linux newlines (if any) to dos newlines
5
votes
7answers
5k views

What's the best way of doing dos2unix on a 500k line file, in Windows? [closed]

Question says it all, I've got a 500,000 line file that gets generated as part of an automated build process on a Windows box and it's riddled with ^M's. When it goes out the door it needs to *nix ...
0
votes
4answers
330 views

Code formatting across Windows and Unix

What Visual Studio settings and .emacs macros improve the likelihood that code written on Windows (in visual studio) will still look good in Emacs (and vice versa)? I've recently taken to turning off ...
112
votes
15answers
75k views

Convert DOS line endings to Linux line endings in vim

If I open files I created in Windows, the lines all end with ^M. How do I delete them all in once?
7
votes
2answers
3k views

How do I implement a pre-commit hook script in SVN that calls dos2unix to validate checked-in file

I was wondering if anyone here had some experience writing this type of script and if they could give me some pointers. I would like to modify this script to validate that the check-in file does not ...