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
Asked
Active
Viewed 7,759 times
2 Answers
22
Found - it is the Ant FixCRLF task.

martin clayton
- 76,436
- 32
- 213
- 198

flybywire
- 261,858
- 191
- 397
- 503
-
1Wow! It's the first time I can actually say "Jon Skeet saved my week!" :) – sinuhepop Jul 26 '12 at 10:21
-
Guess, who else got their day saved (ik its 2020) :D – powersource97 Sep 28 '20 at 13:44
5
You can use the built-in fixcrlf
ant task on a set of files instead of using dos2unix
.
The following example is equal to running dos2unix
on all *.sql
files located under the "SQL" directory:
<fixcrlf srcdir="${SQL}" includes="**/*.sql" eol="lf" eof="remove" />
see for more details.

Stephan
- 41,764
- 65
- 238
- 329

Michael G.
- 1
- 1
- 1