mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
8f8a9f0190
(This used to be commit 9f672c26d6
)
13 lines
240 B
Perl
Executable File
13 lines
240 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
my $inprog = 0;
|
|
|
|
while(<STDIN>) {
|
|
if(/<(programlisting|screen)>/) { $inprog = 1; }
|
|
if(/<\/(programlisting|screen)>/) { $inprog = 0; }
|
|
if(not /="(.*)"/ and not $inprog) {
|
|
s/"(.*?)"/<quote>\1<\/quote>/g;
|
|
}
|
|
print $_;
|
|
}
|