Files
konsole/schemaStrip.pl
Thomas Zander 8448cd00f1 Convert config properly, thanx fly to Waldo for his help :)
svn path=/trunk/kdebase/konsole/; revision=141830
2002-03-08 17:34:32 +00:00

9 lines
128 B
Perl
Executable File

#!/usr/bin/perl
foreach (<>) {
if(/^schema=.*\/(.*)$/) {
print "schema=$1\n";
next;
}
print $_;
}