kill unix_to_dos script

there is really no point in having such a thing here.

Change-Id: I2ffa2e911fadda1db2e402c05d59a7c88ddb30b9
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Oswald Buddenhagen 2013-10-23 15:23:35 +02:00 committed by The Qt Project
parent 39cffc4e34
commit c3f6a5d93b

View File

@ -1,16 +0,0 @@
#!/usr/bin/perl
undef $/;
foreach $f ( @ARGV ) {
if ( open( F, "< $f" ) ) {
$i = <F>;
close F;
$i =~ s/\n/\r\n/g;
$i =~ s/\r+/\r/g;
if ( open( F, "> $f" ) ) {
print F $i;
close F;
}
}
}