Prv8 Shell
Server : Apache
System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64
User : matalashes ( 1004)
PHP Version : 8.1.29
Disable Function : NONE
Directory :  /proc/17567/root/usr/share/doc/perl-XML-Parser-2.41/samples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/17567/root/usr/share/doc/perl-XML-Parser-2.41/samples/xmlcomments
#!/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:

haha - 2025