This is a simple command-line utility for dumping the contents of a file in hexadecimal format along with ASCII representation.
$ git clone https://github.com/HN026/HexDmp.git
$ cd HexDmp
$ make
$ ./bin/dmp [filename]
[file]
: File to read (default: STDIN).
-l, --line <int>
: Bytes per line in output (default: 16).$ ./bin/dmp -l <int> [filename]
-n, --num <int>
: Number of bytes to read (default: all).$ ./bin/dmp -n <int> [filename]
-o, --offset <int>
: Byte offset at which to begin reading.$ ./bin/dmp -o <int> [filename]
-h, --help
: Display help text and exit.-v, --version
: Display version number and exit.
This project is licensed under the MIT License - see the LICENSE file for details.