File Size Limit in Archive::Perl

2007-11-10 Thread San
Hi All,

Is there any way to limit the file size while zipping using
Archive::Zip so that it will stop processing a zip operation on a file
list when it crosses the maximum file size.

Thanks in advance.

-A


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




How to convert csv file to excel

2007-08-14 Thread Kyaw San
Hi Friends,

Can anybody help me how to convert csv file to excel file using Perl
or Shell scripts?

Regards,
KS


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




Basic problem w/a script on browser

2003-07-08 Thread Chris San
How can I run a Perl Script on my browser?
Reading I found that I have to do only 2 things:
1) Add a first line to my script (whereis perl):
#! /usr/bin/perl
2) and formatting the output in html-style:
print "Content-type: text/html";
print "";
...
etc.
But I dont get the results in the browser.
I call the script from a html document using:

Simple doublt of $_ and print;

2003-06-24 Thread Chris San
It is supose this code prints the first line of file text.txt (which is 
not empty), but it doesn't print anything.

$file = "text.txt";
open (file);
;
print;
close (file);
I understood that  ;  gets a line (the first in this case) and, in 
this case, it puts the line in  $_ . Also,  print;  (without args) 
prints the content of $_ .

Any idea about it?

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]