From ad9b171dc72179bf67c909b475cc277855677efa Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Wed, 26 Jul 2017 14:04:29 -0400 Subject: Initial commit --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..0dd6116 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# bitutils + +This is a collection of scripts which make working with binary numbers a bit +easier. + +- `bin` converts its argument (or standard input) to binary. +- `hex` converts its argument (or standard input) to hexadecimal. +- `bitrule` displays a ruler below its standard input. + +This is not an official Google product. + +## Example + +``` shellsession +$ bin 12345 | bitrule +0b11000000111001 + '|'''|'''|'''| + 12 8 4 0 +``` -- cgit v1.2.3