#!/usr/bin/perl -w print <## !/usr/bin/perl -w print <## unpack(q!A3x3!x89,$_); # here is the equivalent: # The use of 'x3' confuses me, but I know that this creates # a list of 89 elements, each 3 characters long (numbers) unpack("A3x3" x 89, $_); #### #!/usr/bin/perl -w print <## #!/usr/bin/perl -w print <## # Note that he could have simply closed STDERR here, # rather than select it, then close it. Spiffy use though! CHECK { select STDERR; $_ = join " ", qw(Just Another Perl Hacker); close STDERR; select STDOUT; print && die; }