/usr/share/doc/libxml-dt-perl/examples/ex5.pl is in libxml-dt-perl 0.63-1.
This file is owned by root:root, with mode 0o644.
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 | #!/usr/bin/perl
use XML::DT ;
use Data::Dumper;
sub XML::DT::Dumper {}# Dumper(shift)}
my $filename = shift;
%xml=( 'music' => sub{"Autor da musica: $c ($v{x})"},
'musica' => sub{"\n--------------(AMP)$v{x}--------\n$c"},
'-default' => sub{"contexto=".join("/",@dtcontext).
"\n $q:$c\n".
"pai=". ctxt(1). "\n" },
'arquivo' => sub{("_" x 60). dt($v{file},%xml2)},
'-outputenc' => 'ISO-8859-1'
);
# print dt("$filename");
print dt($filename,%xml);
|