Install
openclaw skills install od-toolDump file contents in octal, decimal, hexadecimal, and ASCII formats. Use for binary data inspection and low-level file analysis.
openclaw skills install od-toolDisplay 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