Install
openclaw skills install @dinghaibin/hexdump-toolDisplay file contents in hexadecimal and ASCII format. Use for binary file analysis, forensic examination, and low-level data inspection.
openclaw skills install @dinghaibin/hexdump-toolDisplay 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