I've added this in the chatterbox but I'm trying here as well.
I have two web pages that are both displaying comma separated values. One page has customer id and storage size. The other has customer id and names. I need to figure out a way to match the csv's names from one page to the others corresponding cust id
webpage1ex: c500, 345.5 webpage2ex: c500, younggrasshopper13
I figured I could curl the url into a variable like so:
START_DATE=$(date '+%Y-%m-%d' -d "-1 month")
END_DATE=$(date '+%Y-%m-%d')
my $data = curl `http://www.webpagedata.com?end_date=$END_DATE&start_d
+ate=$START_DATE&type=csv 2>&1`
my $name = curl `http://www.webpagename.com?end_date=$END_DATE&start_d
+ate=$START_DATE&type=csv 2>&1`
That is just an example of what I was trying to do without giving you guys the webpages. I don't know how much I can give since it is work related. I figured once I got the curl to input the strings into variables I could somehow use the variables and match the customer Id of the first web page to the customer id of the second webpage and merge over the corresponding name. Then I need to take this output and curl it to an email that gets delivered. the email should include customer id, storage, and name
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.