exiv2/msvc/tools/ppxml
2016-10-25 23:08:25 +00:00

15 lines
218 B
Perl
Executable File

#!/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!
##