I'm new to Perl and already seeing how powerful this language is. I need help understanding the following unpack command:
@data = unpack(["","C*","n*","(H6)*",*N*"]->[$size], $table);
Here's what I know:
- unpack is unpacking $table into the array data
- unpack is using the template...