mirror of
https://github.com/KDE/konsole.git
synced 2026-05-03 12:15:33 -04:00
9 lines
127 B
Perl
Executable File
9 lines
127 B
Perl
Executable File
#!/usr/bin/perl
|
|
foreach (<>) {
|
|
if(/^schema=.*\/(.*)$/) {
|
|
print "schema=$1\n";
|
|
next;
|
|
}
|
|
print $_;
|
|
}
|