Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; my $data_file = "record"; open(FILE,"$data_file") or die $!; binmode(FILE); read(FILE,my $time,3,0); print "$time \n"; close(FILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Binary Data File
by broquaint (Abbot) on Oct 26, 2002 at 13:50 UTC | |
|
Re: Binary Data File
by BrowserUk (Patriarch) on Oct 26, 2002 at 13:59 UTC | |
|
Re: Binary Data File
by Aristotle (Chancellor) on Oct 26, 2002 at 14:26 UTC |