home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / HEXDUMP.ZIP / HEXDUMP.ABS next >
Text File  |  1992-08-05  |  876b  |  24 lines

  1.  
  2. HexDump 1.00 05-Aug-92, (C) Copyright IBM Corp. 1992.  By Joe Nord
  3.  
  4. A binary data display and conversion utility, hexdump supports both bin2hex
  5. and hex2bin functionality.  'bin2hex' is pretty self-explainatory.
  6. For 'hex2bin' (-r), hexdump searches the input stream for "nibbles"
  7. converting each pair to a binary output byte.  To facilitate small changes
  8. to binary files, input hex format is compatible with hexdump displayed hex and
  9. characters following a '*' on a line are ignored (for comments).
  10.  
  11. Syntax:
  12.    HexDump -switches [InfileName]  (output always written to stdout)
  13.  
  14. Switches:
  15.    -R      Reverse (hex2bin)
  16.    -Sxxx   Start offset (hex)
  17.    -Nxxx   Number of bytes to process (hex)
  18.    -H, -?  Help
  19.  
  20. Examples "dir | hexdump"
  21.          "hexdump c:\startup.cmd"
  22.          "hexdump -r < myfile.hex > myfile.bin"
  23.          "dir | hexdump | hexdump -r"
  24.