Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
12answers
28k views

How do I convert dos files to linux files in vim?

If I open files I created in windows, the lines all end with ^M. How do I delete them all in once?
14
votes
2answers
512 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
1answer
3k 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 ...
5
votes
8answers
3k views

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

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 ...
5
votes
2answers
2k 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 ...
4
votes
5answers
795 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 ...
4
votes
3answers
1k 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 ...
3
votes
1answer
2k 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
2
votes
1answer
35 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 ...
2
votes
2answers
203 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 ...
2
votes
3answers
2k 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 ...
1
vote
2answers
101 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 ...
1
vote
2answers
425 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: ...