HEXDUMP Version 1.0b
COPYRIGHT (C) 1994-2002 Norbert H. Doerry
22 June 2002
doerry@aol.com
SYNTAX:
hexdump filename
where
Filename Name of the input file
Description:
This program displays the contents of a file in hexadecimal format
as well as ASCII format. On each line, 16 bytes of the file are
displayed in the following format:
AAAA: DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD DD !aaaaaaaaaaaaaaaa
where
AAAA = hexadecimal representation of the address of the first byte displayed
DD = hexadecimal representation of the byte
a = ascii interpretation of byte, or the character '.' if non-printing
EXAMPLE:
>hexdump hexdump.c
0000: 2F 2A 20 68 65 78 64 75 6D 70 2E 63 0D 0A 20 20 !/* hexdump.c..
0010: 20 56 65 72 73 69 6F 6E 20 31 2E 30 62 0D 0A 2A ! Version 1.0b..*
0020: 2F 0D 0A 0D 0A 2F 2A 20 43 4F 50 59 52 49 47 48 !/..../* COPYRIGH
0030: 54 20 28 43 29 20 31 39 39 34 2D 32 30 30 32 20 !T (C) 1994-2002
0040: 4E 6F 72 62 65 72 74 20 48 2E 20 44 6F 65 72 72 !Norbert H. Doerr
...
This program is free software; you can redistribute it and/or
modify it under the terms of the
GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.