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
unix2dos (or dos2unix) in ant
Found - it is the Ant FixCRLF task.
Wow! It's the first time I can actually say "Jon Skeet saved my week!" :) –
Ongoing
Guess, who else got their day saved (ik its 2020) :D –
Kierstenkieselguhr
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.
© 2022 - 2024 — McMap. All rights reserved.