Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skeeto/hastyhex
A blazing fast hex dumper
https://github.com/skeeto/hastyhex
Last synced: about 2 months ago
JSON representation
A blazing fast hex dumper
- Host: GitHub
- URL: https://github.com/skeeto/hastyhex
- Owner: skeeto
- License: unlicense
- Created: 2019-01-12T20:42:11.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-19T14:31:38.000Z (over 2 years ago)
- Last Synced: 2024-10-16T00:33:23.203Z (about 2 months ago)
- Language: C
- Size: 14.6 KB
- Stars: 90
- Watchers: 4
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-blazingly-fast - hastyhex - A blazing fast hex dumper (C)
- awesome-cli-tui-software - skeeto/hastyhex - A blazing fast hex dumper (<a name="data"></a>data)
README
# HastyHex : a faster hex dumper
HastyHex is a ***blazing fast*** hex dump utility with optional ANSI
color output. It performs about *one to two orders of magnitude* faster
than your typical implementation of `hexdump` or `od`. It's is written
in plain old ANSI C, so you can run it literally anywhere.![](https://i.imgur.com/xbr4aMj.png)
## Usage
HastyHex produces color output by default regardless of what's connected
to the output. The `-p` option turns off color.usage: hastyhex [-fhlp] [-o FILE]
-h print this help message
-l force output line-buffered
-f force output fully-buffered
-o FILE output to file instead of standard output
-p do not output color ("plain")The `less` pager has a `-R` argument that understands ANSI color escape
sequences, making it a great candidate for accepting output from
HastyHex.$ hastyhex data.bin | less -FRX
The `-f` option increases the output buffer size which typically
improves performance. Since MSVC doesn't support line-buffering, `-l`
will be equivalent to `-f` on Windows.