/usr/share/kconf_update/kile1.9-1_upd.pl is in kile 4:2.9.91-4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/usr/bin/perl
# tbraun 23.2.2006
# change names of cwl files
foreach (<>)
{
$content=$_;
$content=~ s/(0|1)-Common//g; # is now in latex-document
$content=~ s/(0|1)-Latex/\1-latex-document/g;
$content=~ s/(0|1)-Tex/\1-tex/g;
$content=~ s/(0|1)-MathSymbols/\1-latex-mathsymbols/g;
#clean up
$content=~ s/,,/,/g;
$content=~ s/(CompleteTex=),/\1/g;
$content=~ s/,$//g;
print $content;
}
|