You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
218 B
Plaintext
15 lines
218 B
Plaintext
13 years ago
|
#!/usr/bin/perl
|
||
|
|
||
13 years ago
|
# cpan XML::{Twig,Parser} to install the libraries
|
||
|
|
||
13 years ago
|
use XML::Twig;
|
||
|
use XML::Parser;
|
||
|
|
||
|
my $xml = XML::Twig->new(pretty_print => 'indented');
|
||
|
|
||
|
$xml->parse(\*STDIN);
|
||
|
$xml->print();
|
||
|
|
||
|
# That's all Folks!
|
||
|
##
|