mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
12 lines
191 B
Perl
12 lines
191 B
Perl
#! /usr/bin/env perl
|
|
|
|
use strict;
|
|
use XML::Parser;
|
|
|
|
my $p1 = XML::Parser->new(Style => 'Debug', ErrorContext => 2, Namespaces => 1);
|
|
for my $arg (@ARGV) {
|
|
$p1->parsefile($arg);
|
|
}
|
|
|
|
exit(0);
|