Hi amarquis. Thanks for the response. I've been browsing that sinse you pointed it out. Great help!

This is sort of what I am looking for. What I would do if I was doing this inside of Oracle (PL/SQL) (which is where my background is) would be to create a record type such as:

type example_rec is record ( IP varchar2(10), Username vachar2(56), get_files varchar2(15));
and subsequently create a table of those records such as:
ex_table is TABLE of example_rec index by binary_integer;
Subsequently opening the text file, looping through it and filling the table with the rows in the text file.

I hope this gives you a better understanding of what I'm trying to do.

I'm certain my data won't contain any pipes, I'm the only one that will be using it. I'm trying to create multiple ftp transfers for various files that need to be moved around here. So it was either multiple scripts, or try and create one to do all using a configuration file.

Eventually, my plan is to use an Oracle external table to allow users to access it, but that's further down the road.


In reply to Re^2: Perl record types by naveed010
in thread Perl record types by naveed010

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.