Now, I'm just going to generate some bunk data to give you the
idea. But I think this is what you want.
I've never figured out a good way to make this type of code indent well for readability, so you'll have to deal with that yourself.
my @URI = ("/profileQuery1","/profileQuery2","/profileQuery3");
my @DATE = ("05/Apr/2004:16:33:02", "05/Apr/2004:16:36:31", "05/Apr/20
+04:16:37:48");
my @FILESIZE = ("889","224", "345");
my $i = 0;
while($i <= $#URI){
format top =
URI DATE Seconds Filesize
-------------- -------------------------- ------- -------
.
format STDOUT =
@<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<< @<<<<<<<
$URI[$i],$DATE[$i],"1", $FILESIZE[$i]
.
write;
$i++;
}
This code outputs
URI DATE Seconds Filesize
-------------- -------------------------- ------- --------
/profileQuery1 05/Apr/2004:16:33:02 1 889
/profileQuery2 05/Apr/2004:16:36:31 1 224
/profileQuery3 05/Apr/2004:16:37:48 1 345
And I'm fairly sure that's what you wanted.
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.