man/ronin-unhexdump.1.md in ronin-2.0.5 vs man/ronin-unhexdump.1.md in ronin-2.1.0.rc1

- old
+ new

@@ -1,7 +1,11 @@ # ronin-unhexdump 1 "2023-02-01" Ronin "User Manuals" +## NAME + +ronin-unhexdump - Decodes a hexdump back into raw data + ## SYNOPSIS `ronin unhexdump` [*options*] [*FILE*]` ## DESCRIPTION @@ -10,22 +14,22 @@ Supports a variety of formats, bases, and encodings. ## ARGUMENTS *FILE* - The optional path to the file to un-hexdump. +: The optional path to the file to un-hexdump. ## OPTIONS `-o`, `--output` *FILE* - Optional path to the output file. +: Optional path to the output file. `-f`, `--format` [`hexdump`\|`od`] - Specifies the hexdump format to parse. +: Specifies the hexdump format to parse. `-t`, `--type` *TYPE* - The binary data type to decode the data as. Must be one of the following: +: The binary data type to decode the data as. Must be one of the following: * `int8` * `uint8` * `char` * `uchar` @@ -88,37 +92,37 @@ * `double_le` * `double_be` * `double_ne` `-b`, `--base` `2`|`8`|`10`|`16` - The numeric base to print hexdumped numbers in. +: The numeric base to print hexdumped numbers in. `-A`, `--address-base` `2`|`8`|`10`|`16` - The numeric base to print the index addresses in. +: The numeric base to print the index addresses in. `--[no-]named-chars` - Enables parsing of `od`-style named characters (ex: `nul`). +: Enables parsing of `od`-style named characters (ex: `nul`). `-h`, `--help` - Prints help information. +: Prints help information. ## EXAMPLES Unhexdump a `hexdump -C` hexdump: - ronin unhexdump -o raw.bin hexdump.txt + $ ronin unhexdump -o raw.bin hexdump.txt Unhexdump a `hexdump` hexdump: - ronin unhexdump -o raw.bin -t uint16_le hexdump.txt + $ ronin unhexdump -o raw.bin -t uint16_le hexdump.txt Unhexdump an `od` hexdump: - ronin unhexdump -o raw.bin -f od od.txt + $ ronin unhexdump -o raw.bin -f od od.txt ## AUTHOR Postmodern <postmodern.mod3@gmail.com> ## SEE ALSO -ronin-hexdump(1), hexdump(1), od(1) +[ronin-hexdump](ronin-hexdump.1.md) [hexdump](hexdump.1.md) [od](od.1.md)