An open API service indexing awesome lists of open source software.

https://github.com/polymeilex/dehumanize

Dehumanize text binary data into raw bytes
https://github.com/polymeilex/dehumanize

Last synced: 10 months ago
JSON representation

Dehumanize text binary data into raw bytes

Awesome Lists containing this project

README

          

# Dehumanize CLI

[![version](https://img.shields.io/crates/v/dehumanize.svg)](https://crates.io/crates/dehumanize)

Are you tired of those pesky humans supplying you binary data in human-readable formats?
Dehumanize can help you translate the data to a format that you can understand (aka. raw bytes).

```sh
echo "FFFF" | dehumanize --hex
echo "FF FF" | dehumanize --hex --separator " "
echo "0xFF, 0xFF" | dehumanize --hex --separator ","
echo "255, 255" | dehumanize --separator ","
```