Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
/ hexxer Public archive

A streaming hex encoding/decoding tool, pipes stdin to stdout

License

Notifications You must be signed in to change notification settings

dcousens/hexxer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deprecated, use basenc --base16 -w0 from coreutils


hexxer

A streaming hex encoding/decoding tool, pipes stdin to stdout.

Byte-for-byte, simple, not UTF8 aware (if that matters).

Throws on invalid characters unless --decode-any is used.

Examples

Decoding

> echo "6a" | hexxer -d
j

> echo "6b" | hexxer --decode
k

Encoding

> echo "j" | hexxer
6a0a

> echo -n "j" | hexxer
6a

LICENSE MIT