> -----Original Message-----
> From: Bob Showalter [mailto:[EMAIL PROTECTED]]
> Sent: Monday, June 10, 2002 10:34 AM
> To: 'William Melanson'; [EMAIL PROTECTED]
> Subject: RE: Is this an eye sore?
> 
> ...
>    my ($user, undef, $quota) = unpack('A8 A12 A8', $_);

n.b. this can also be written as:

     my ($user, $quota) = unpack('A8 x12 A8', $_);

For unpack 'x' in the template means to skip a byte.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to