13

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

flybywire
  • 261,858
  • 191
  • 397
  • 503

2 Answers2

22

Found - it is the Ant FixCRLF task.

martin clayton
  • 76,436
  • 32
  • 213
  • 198
flybywire
  • 261,858
  • 191
  • 397
  • 503
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