Perl script to create csv files with a pattern – Generic script.
| Hot: |
I was having a really bad day and needed a quick solution to create some csv files. And this I needed to do for multiple data kinds and patterns, so I created this small script to do the job for me…
#Number of rows required in the output.
$rows = 100;
#The config and the output file
open (CF_FILE, “<Config.test”);
open (OUT_FILE, “>test.csv”);#—————————————————————————
# No need to change anything below this.
#—————————————————————————$count = 0 ;
#read a line from config file of the type
#also any line starting with # is treated as comment.
# startingvalue incrementvalue
# so you can have any number of fields here and all of them you would be joined with , to write to the output file.
while (<CF_FILE>)
{
/^#/ && next;
chomp();
@vars = split(/ /);
$arr[$count] = $vars[0];
$arr_inc[$count] = $vars[1];
$count++;
}
for ($i=0; $i < $rows; $i++)
{
$line = join (“,”,@arr);
print OUT_FILE “$line\n”;
for ($j=0; $j < $count; $j++)
{
$arr[$j] += $arr_inc[$j];
}
}
related post
Related Posts -
Perl Excel to create a test plan with perl -- specially very Today I came across a very interesting problem. I had... -
Logwatch for Linux Systems. On my personal desktop at home, I like to see...
Related Websites - MyPoints at ludicrous speed Photo by: dsearls MyPoints is a great program, but let's...
- Why is it Bad to Cancel a Credit Card? Unless the idea of streamlined credit you have in your...

![Perl script to create csv files with a pattern Generic script. Reblog this post [with Zemanta]](http://img.zemanta.com/reblog_b.png?x-id=ed184035-8325-46df-9cb2-05553f9f59d0)





























