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.
od-tool [options] <file>
-x: Hexadecimal output-d: Decimal output-c: ASCII character display-A: Select address base (d=decimal, x=hex, o=octal, n=none)# 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
共 1 个版本