Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by zenstudies

  1. zenstudies

    Perl Unpack function. Hex an input file

    This file will output a line of hex and then directly below it the line in ascii. --------------------------- #! /usr/bin/perl use warnings; use strict; open (my $file, '<', $ARGV[0]) or die "Unable to open $ARGV[0]: $!"; binmode $file; while(read ($file, my $buffer,32)) { for my $char...

Part and Inventory Search

Back
Top