From c3f6a5d93b2439fc7a821e1b9d83f0aa996805bf Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Wed, 23 Oct 2013 15:23:35 +0200 Subject: kill unix_to_dos script there is really no point in having such a thing here. Change-Id: I2ffa2e911fadda1db2e402c05d59a7c88ddb30b9 Reviewed-by: Joerg Bornemann --- util/scripts/unix_to_dos | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 util/scripts/unix_to_dos (limited to 'util/scripts/unix_to_dos') diff --git a/util/scripts/unix_to_dos b/util/scripts/unix_to_dos deleted file mode 100755 index 510037c2f7..0000000000 --- a/util/scripts/unix_to_dos +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/perl - -undef $/; - -foreach $f ( @ARGV ) { - if ( open( F, "< $f" ) ) { - $i = ; - close F; - $i =~ s/\n/\r\n/g; - $i =~ s/\r+/\r/g; - if ( open( F, "> $f" ) ) { - print F $i; - close F; - } - } -} -- cgit v1.2.3