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

#!/usr/bin/perl
# cpan XML::{Twig,Parser} to install the libraries
use XML::Twig;
use XML::Parser;
my $xml = XML::Twig->new(pretty_print => 'indented');
$xml->parse(\*STDIN);
$xml->print();
# That's all Folks!
##