dcf0a75754
svn path=/trunk/KDE/kdelibs/; revision=958386
10 lines
196 B
Perl
Executable File
10 lines
196 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
while(<>) {
|
|
if ($_ =~ m/^\[.*\[Configuration\]\[PopupApplet\]$/) {
|
|
print "# DELETEGROUP $_";
|
|
$_ =~ s/\[Configuration\]\[PopupApplet\]$/[PopupApplet]/;
|
|
}
|
|
print $_;
|
|
}
|