Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

HTTP PUT Request with separate values in csv

by StayCalm (Novice)
on May 16, 2018 at 13:30 UTC ( [id://1214656]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    TEST_1,10.56.7.80
    TEST_3,10.66.78.10
    TEST_4,10.66.81.9
    TEST_2,10.67.9.12
    
  2. or download this
    01,TEST_1,10.56.7.80
    02,TEST_3,10.66.251.9
    03,TEST_5,10.66.81.9
    
  3. or download this
     use strict;
     use warnings;
    ...
            say "Match found $name, $first{$name}";
        } else {
            say "UPDATE need be done for $second{$name}";
    
  4. or download this
    
      open ( my $input_1, '<', 'output1.csv' ) or die $!;
    ...
    }
    }
    
  5. or download this
    UPDATE need be done for 10.66.251.9
    404 Not Found
    ...
    404 Not Found
    404 Not Found
    Match found TEST_1,10.56.7.80
    
  6. or download this
    UPDATE need be done for 10.66.251.9
    UPDATE need be done for 10.66.81.9
    ...
    
    Match found TEST_1,10.56.7.80
    Devices should be added: Test2
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1214656]
Approved by marto
Front-paged by kcott
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (None)
    As of 2024-04-25 00:57 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found