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
- Host: GitHub
- URL: https://github.com/guiprav/xx
- Owner: guiprav
- License: agpl-3.0
- Created: 2015-10-24T06:01:36.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-14T00:41:28.000Z (almost 10 years ago)
- Last Synced: 2025-01-25T06:11:39.034Z (11 months ago)
- Topics: binary-data, unix-command
- Language: C
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: COPYING
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