https://github.com/mhutter/bindump
CLI tool to dump the binary representation of some data
https://github.com/mhutter/bindump
binary cli shell
Last synced: over 1 year ago
JSON representation
CLI tool to dump the binary representation of some data
- Host: GitHub
- URL: https://github.com/mhutter/bindump
- Owner: mhutter
- Created: 2017-07-06T06:45:28.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-17T19:15:16.000Z (about 8 years ago)
- Last Synced: 2025-01-29T02:24:46.812Z (over 1 year ago)
- Topics: binary, cli, shell
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bindump
Reads data from `stdin`; and prints the binary representation of each byte.
## Usage
$ echo 'Hello, World!' | bd
01001000 01100101 01101100 01101100
01101111 00101100 00100000 01010111
01101111 01110010 01101100 01100100
00100001 00001010
## Installation
go get -u github.com/mhutter/bindump/...