Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 1.35 KB

hex.1.md

File metadata and controls

59 lines (40 loc) · 1.35 KB

% HEX(1) User Manual % Noah Trupin % July 30, 2023

NAME

nohex - Noah's hexdump utility

SYNOPSIS

nohex [options] [input-file]...

DESCRIPTION

Nohex takes an input file (and assorted options) and produces a table containing a hexdump alongside a textual representation of the file.

If no options are provided, Nohex defaults to dumping the entire provided input-file with 16 bytes per line.

OPTIONS

-n INTEGER, --length=INTEGER : Specify the number of bytes to read and dump from input-file. Nohex defaults to dumping the entire file.

-c INTEGER, --cols=INTEGER : Specify the number of bytes to print per output row. Nohex defaults to 16 columns per row.

-s INTEGER, --skip=INTEGER : Specify the number of bytes to skip before reading from input-file. Nohex defaults to a skip of 0 (or, starting from the beginning) of input-file.

FLAGS

--help : Display the help menu.

--no-color : Disable colored output. By default, Nohex uses 8-bit terminal colors to enhance output.

--offset : Show the hexadecimal input offset.

--ascii : Use ascii box-drawing characters. By default, Nohex uses Unicode box-drawing characters.

--octal : Produce octal output. By default, Nohex outputs hexidecimal character codes.

SEE ALSO

The source code for Nohex at https://github.com/ntrupin/nohex