/usr/share/doc/libxml-parser-perl/examples/xmlcomments is in libxml-parser-perl 2.44-2build3.
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 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #!/usr/bin/perl -w
#
# $Revision: 1.1.1.1 $
#
# $Date: 2003-07-27 11:07:11 $
use XML::Parser;
my $file = shift;
die "Can't find file \"$file\""
unless -f $file;
my $count = 0;
my $parser = new XML::Parser(ErrorContext => 2,
ParseParamEnt => 0
);
$parser->setHandlers(Comment => \&comments);
$parser->parsefile($file);
print "Found $count comments.\n";
################
## End of main
################
sub comments
{
my ($p, $data) = @_;
my $line = $p->current_line;
$data =~ s/\n/\n\t/g;
print "$line:\t<!--$data-->\n";
$count++;
} # End comments
# Tell Emacs that this is really a perl script
# Local Variables:
# mode:perl
# End:
|