Skip to content

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

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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