揮発性のメモ2

知識をメモ書きしておく

16進の文字列を文字にして吐くプログラム

#!/usr/bin/perl

$hex = $ARGV[0];
$bin = pack('H*',$hex);

print $bin;

Perlの組み込み関数 pack の翻訳 - perldoc.jp