in reply to Re: Re: A string that begins with $ (again)
in thread A string that begins with $ (again)
Now run that and you'll see that all the data is intact.#!/usr/bin/perl -w #no need here, but you should put this in all your scripts. use strict; while (<>) { print "$_\n"; }
Rich
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: A string that begins with $ (again)
by johan_paz (Initiate) on Apr 25, 2001 at 05:22 UTC | |
by rchiav (Deacon) on Apr 25, 2001 at 05:29 UTC |