1 2 3 4 5
use strict; use warnings; my $in = <STDIN>; printf "Anzahl Bytes: %d\nOktetten: %02X %02X", length $in, unpack "C*", $in;
1234
D:\home\dev>stdin.plAAnzahl Bytes: 2Oktetten: 41 0A