in reply to Re: (crazyinsomniac)Re: Any way to binmode
in thread Any way to binmode <>
FF: binmode ARGV; while(<>) { print } continue { if(eof) { close ARGV; goto FF; } }
upate: i apologize, but you can always:
FF: binmode ARGV; while(<>) { binmode ARGV; local $/; $a=<>; } continue { if(eof) { close ARGV; goto FF; } }
UPDATE: well i was almost there, this is kind of stupid, but it'll work as you want it to;
while(<>) { close ARGV; open ARGV, $ARGV or die $!.' '.$ARGV; binmode ARGV; binmode ARGV; local $/; print $_=<>; close BINMODE; }
___crazyinsomniac_______________________________________
Disclaimer: Don't blame. It came from inside the void
perl -e "$q=$_;map({chr unpack qq;H*;,$_}split(q;;,q*H*));print;$q/$q;"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: (crazyinsomniac)Re: Any way to binmode
by bikeNomad (Priest) on Aug 02, 2001 at 20:02 UTC | |
by crazyinsomniac (Prior) on Aug 02, 2001 at 20:05 UTC | |
by bikeNomad (Priest) on Aug 02, 2001 at 20:13 UTC |