Display file contents as hexadecimal bytes alongside their ASCII representation. Each line shows offset, raw bytes, and printable characters for complete binary inspection.
hexdump-tool [options] <file>
# Standard hex dump
hexdump-tool binary.bin
# Canonical format
hexdump-tool -C data.bin
# Show first 256 bytes only
hexdump-tool -n 256 file.bin
共 1 个版本