You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/konversation-0.19-colorcode...

27 lines
416 B

#! /usr/bin/perl
use strict;
my $currentGroup = "";
my $key;
my $value;
while (<>)
{
chomp;
if ( /^\[/ )
{
$currentGroup = $_;
next;
}
($key, $value) = ($_ =~ /([^=]+)=[ \t]*([^\n]+)/);
if ($_ =~ /FilterColorCodes/)
{
print("# DELETE $currentGroup$key\n");
if ($value eq "true")
{
print("AllowColorCodes=false\n");
}
}
}