File: dumpianatoxml.pl

package info (click to toggle)
libnet-dhcp-perl 0.696%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 316 kB
  • sloc: perl: 1,964; makefile: 8
file content (14 lines) | stat: -rwxr-xr-x 231 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use warnings;
use strict;
use XML::Simple;
use Data::Dumper;
$Data::Dumper::Indent = $Data::Dumper::Sortkeys = 1;

my $filename = shift
   or die "please specify a filename\n";


print Dumper( XMLin($filename) );