-------- code that I was just looking at------------- #!/usr/bin/perl use warnings; use strict; use XML::Twig; my $twig = XML::Twig->new(twig_roots => { one => 1}); $twig->parsefile(shift); $twig->print; --- example file -------