summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-10-23 15:23:35 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-25 14:51:30 +0200
commitc3f6a5d93b2439fc7a821e1b9d83f0aa996805bf (patch)
tree0a8e6f1dbaec8da5b71e44675fffe9c2fcde11bd /util
parent39cffc4e347ee65fa2bd9707475f05915235e170 (diff)
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>
Diffstat (limited to 'util')
-rwxr-xr-xutil/scripts/unix_to_dos16
1 files changed, 0 insertions, 16 deletions
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 = <F>;
- close F;
- $i =~ s/\n/\r\n/g;
- $i =~ s/\r+/\r/g;
- if ( open( F, "> $f" ) ) {
- print F $i;
- close F;
- }
- }
-}