in reply to Re: problem with File::Cat
in thread problem with File::Cat
Thanks a lot{ local $\ ; # do 'cat' stuff here }
intowhile (<FILE>) { print $handle $_; }
(not tested)while (<FILE>) { printf $handle $_; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: problem with File::Cat
by jwkrahn (Abbot) on Apr 24, 2007 at 17:43 UTC | |
by jeanluca (Deacon) on Apr 24, 2007 at 17:52 UTC |