aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
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
+```