RE: [Perl-unix-users] sysread, sockets, reading binary data

2001-11-20 Thread Steve Aaron
Title: RE: [Perl-unix-users] sysread, sockets, reading binary data Hi Jason, how is the weather in the Lone Star. Here are few pieces of code you might find useful. To the decimal value for a length use the "hex" function. i.e.     my $len = 0x00 . 0x0A;     my $declen = h

RE: [Perl-unix-users] sysread, sockets, reading binary data

2001-11-20 Thread Jason Ostrom
Steve, Thanks for the response Chief. Great to see an International community here. I'll have to look into using a 'foreach' loop to push elements into the array. I don't know yet how that would play into the accomplishments I made last night. Here is what I discovered last night: ###

Re: [Perl-unix-users] Speeding up the copying very large amounts ofdata from one /here to /there

2001-11-20 Thread Andy Bastien
On Thu, 2001-11-15 at 15:56, John V. Pataki wrote: > All, > > I am working on a program that will be copying a mass amount of data (files > and subdirectories) from one location ( a NAS or external SCSI disk) to a > local file system locatioin on a local SCSI disk. This is basically the > first s

[Perl-unix-users] mod_jk

2001-11-20 Thread Pragneshkumar Gandhi
Hi There Bit out of subject but need your help badly I am facing tough time in compiling mod_jk.c so pls any body have and can mail then pls forward me the mod_jk.so for solaris machine thnkx bye  Living on Earth may be expensive, but it includes an annual free trip round the Sun.Regards,Pragneshku

RE: [Perl-unix-users] sysread, sockets, reading binary data

2001-11-20 Thread Steve Aaron
Title: RE: [Perl-unix-users] sysread, sockets, reading binary data Jason, what about something like. my @bytearray; push @bytearray, unpack "C*", $bufrcv; foreach my $byte (@bytearray) {     ... } Steve Aaron -Original Message- From: Jason