You say you want to pass a number of items to a script. There are several ways, depending on your point of origin. I get the sense that you want fluidity in your script with changing parameters. IMO, a file would be more cumbersome, where using the standard conventions of an HTTP post and CGI would offer greater ease and flexibility.
Some options, in no order:
- If you are posting from an HTML form, this is already done for you in the guise of name=value pairs. You just have to use CGI to parse the string.
- You can provide the name=value pairs yourself (you started to show this). E.g., upload.cgi?name1=value1&name2=value2&name3=value3... There's no limit to the number of pairs.
- If you are supplying the name=value pairs via file, where does the file come from? Is it uploaded from your local computer via a form or FTP, or created on the server through an editor, e.g., Vim, or some admin HTML form
- Or could you use a configuration file and tap it with something like Config::Simple?
- Is it a text file or can the name=values be stored in a database?
If you are calling the script from an HTML link or another Perl script, option #2 above would be the easiest. Messing with uploading and maintaining files seems kludgy.
—Brad
"The important work of moving the world forward does not wait to be done by perfect men." George Eliot
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.