Help for this page

Select Code to Download


  1. or download this
         $node = ("$ARGV[1]");
         $interface = ("$ARGV[3]");
    
  2. or download this
         $node = $ARGV[1];
         $interface = $ARGV[3];
    
  3. or download this
    warn "Supplied arguments: ",join(",",map { "'$_'" } @ARGV);
    warn "Node is '$node', interface is '$interface'.";