hexdump Tcl Built-In Command

NAME

hexdump - display a list of integers as a hex dump

SYNOPSIS

::dmh::hexdump integer_list


DESCRIPTION

Takes as input a list of integer codes and returns a list of text strings that show the data as a hex dump of memory. Up to 16 bytes are shown in each line. Each text string displays hex codes on the left and printable ASCII characters or periods on the right.

This command is installed as part of the Tcl SECS communication support.

For example:

% hexdump {10 13 0x32 0x33 65 66}
{    0A 0D 32 33 41 42                                  | ..23AB           }

SEE ALSO

secsport

AUTHOR

Ed Hume

KEYWORDS

dump hexdump debug