-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
ea175c9
commit 68d39da
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
# Hexd 🔍 | ||
# hexd 🔍 | ||
 | ||
|
||
Hexd is a CLI program that outputs a hexdump of binary files. | ||
hexd is a CLI program that creates hex dumps. | ||
|
||
## Usage | ||
`hexd [file]` | ||
|
||
## Building the project | ||
The project can be built with `make`. The `hexd` binary will be generated in the build folder. | ||
The project is built using `make`. The default `make` target will create a `hexd` binary in the build folder. | ||
|
||
***Note:*** If you use clangd, it is recommended to generate clangd config files with [compiledb](https://github.com/nickdiego/compiledb/tree/master). | ||
|
||
## Purpose | ||
I'm writing hexd to learn more about binary files. It's also an opportunity for me to write more C. | ||
|