2014-12-27 10進数からの16進数 変換 Perl ワンライナー Perl 16進数から10進数に変換 perl -e 'map{print hex($_)} @ARGV' 4a98 10進数から16進数に変換 perl -e 'printf qq/%X/, 19096'