File: new-from-target.pl

package info (click to toggle)
libnet-frame-device-perl 1.12-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 188 kB
  • sloc: perl: 538; makefile: 12
file content (10 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
use strict;
use warnings;

my $target = shift || die("Specify target\n");

use Net::Frame::Device;

my $d = Net::Frame::Device->new(target => $target);
print $d->cgDumper."\n";