OD - Octal Dump Utility
Display file contents in multiple formats including octal, hexadecimal, decimal, and ASCII. Essential for binary analysis, debugging, and examining raw file data at byte level.
Usage
od-tool [options] <file>
Format Options
- Default: Octal bytes
-x: Hexadecimal output-d: Decimal output-c: ASCII character display-A: Select address base (d=decimal, x=hex, o=octal, n=none)
Examples
# Hex dump
od-tool -x file.bin
# Show ASCII representation
od-tool -c data.txt
# Hex with decimal addresses
od-tool -A d -x binary.dat