On 6/25/23 14:13, Jon Elson via cctalk wrote:
> od -x is hex output of 16-bit words, od -d does 16-bit words as decimal,
> and so on.

I have a small bash script that looks like this:

#! /bin/bash
for x in $*; do hexdump -C $x | less; done

--Chuck

Reply via email to