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

https://github.com/guiprav/xx

Binary stream read/write utility for shell scripting and other joys of life
https://github.com/guiprav/xx

binary-data unix-command

Last synced: 6 months ago
JSON representation

Binary stream read/write utility for shell scripting and other joys of life

Awesome Lists containing this project

README

          

# xx

xx is a binary stream read / write utility for shell scripting and other joys of life.

## Example usage

$ xx --char "xx is nice" >example

$ cat example
xx is nice

$ xx --int32 12345 --uint8 1 2 3 4 5 >example

$ xxd example
00000000: 3930 0000 0102 0304 05 90.......

$ xx -r --int32 --uint8 5