Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/merces/hdump
Fast, simple and portable hexadecimal/ASCII dumper
https://github.com/merces/hdump
cli hexdumper
Last synced: about 2 months ago
JSON representation
Fast, simple and portable hexadecimal/ASCII dumper
- Host: GitHub
- URL: https://github.com/merces/hdump
- Owner: merces
- Created: 2012-02-16T04:51:15.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2022-11-18T16:57:03.000Z (about 2 years ago)
- Last Synced: 2023-03-22T16:37:01.694Z (almost 2 years ago)
- Topics: cli, hexdumper
- Language: C
- Homepage: https://sourceforge.net/projects/hdump/
- Size: 22.5 KB
- Stars: 63
- Watchers: 21
- Forks: 46
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
Awesome Lists containing this project
README
# hdump
____________________________________________________#### Fast, simple and portable hexadecimal/ASCII dumper written in ANSI C.
### 1. Build
$ make### 3. Install
# make install### 3. Usage
$ hdump [-c columns] [-s skip] [-n length] fileOPTIONS
-c : number of columns to use before breaking the line (default: 16)
-s : number of bytes to skip / starting byte
-n : number of bytes to read / maximum number of bytes to print
-v : show version and author banner
-h : show usagePrefixing numbers with '0x' makes hdump use them as hexadecimal.
### 4. Examples
Prints the first 16 bytes of /bin/ls file:
$ hdump -n 16 /bin/ls
$ hdump -n 0x10 /bin/lsStart at byte 0xff and prints a maximum of 32 bytes:
$ hdump -s 0xff -n 32 /bin/ls
### 5. Uninstall
# make uninstall