From 59f069dad95be5850e580deff1f575f1ea425245 Mon Sep 17 00:00:00 2001 From: christian mueller Date: Fri, 23 Mar 2012 12:48:05 +0100 Subject: * remove unessasary script Signed-off-by: christian mueller --- include/control/uncomment.pl | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 include/control/uncomment.pl diff --git a/include/control/uncomment.pl b/include/control/uncomment.pl deleted file mode 100755 index f06f52c..0000000 --- a/include/control/uncomment.pl +++ /dev/null @@ -1,24 +0,0 @@ -use strict; -use warnings; - -foreach (@ARGV) -{ - - open FILE, $_ or die "Couldn't open file: $!"; - my $string = join("", ); - close FILE; - - $string=~ s|/[*].*?[*]/||sg; - $string=~ s/virtual//sg; - $string=~ s/=0;/;/sg; - $string=~ s/(^|\n)[\n\s]*/$1/g; - - open F, ">$_" or die "Couldn't open file: $!"; - print F $string; - close F; -} - - - - - -- cgit v1.2.1