On Fri, 22 Oct 2004 02:05:33 -0700 (PDT), Melis Mutlu
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I would like to write a whole string into a file with
> the following code:
>
> open(NEW, "new.txt") or die "cannot open new_acl.txt";
> open(OUT, ">test");
> while(my $line=) {
>cho
On Fri, 22 Oct 2004 02:05:33 -0700 (PDT)
Melis Mutlu <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I would like to write a whole string into a file with
> the following code:
>
> open(NEW, "new.txt") or die "cannot open new_acl.txt";
> open(OUT, ">test");
> while(my $line=) {
> c
Hi,
I would like to write a whole string into a file with
the following code:
open(NEW, "new.txt") or die "cannot open new_acl.txt";
open(OUT, ">test");
while(my $line=) {
chop $line;
$string=$string.$line;
print OUT $string