On 6/25/23 14:15, Tomasz Rola via cctalk wrote:
On Sat, Jun 24, 2023 at 04:39:01PM -0700, Chuck Guzis
via cctalk wrote:
On 6/24/23 12:38, Wayne S wrote:
Chuck, why not post the catalog snd we’ll all
take a look?
Power of the internet!
Okay, I guess that's okay. Here's the data from
the MFD:
https://icedrive.net/s/Q56ZY2Sv4g62Gi9vZ9jzNQ2CD6Bu
Since this is customer data, I can't publish the contents of the files
themselves.
If you have those files accessible from some Unix-like OS, then you
can:
strings < theXfile.x | less
Sometimes also:
hexdump -C < theXfile.x | less
On Linux, I use od to pick through files to figure out what
format they are. Lots of archive and compressor programs
put a few bytes at the beginning that identifies what
utility was used. od -c filename | more give a page by page
look at the ASCII character representation.
od -x is hex output of 16-bit words, od -d does 16-bit words
as decimal, and so on.
Jon