From 31fe3b9536ab1e4ffbb9e7e28214a1bf365b63f5 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Thu, 25 May 2017 07:41:25 -0500 Subject: [PATCH] Readme Change --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 715a554..eac82db 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ Just a couple bash utilities a2b - Convert Ascii to Binary ============================= ``` -Usage +Usage: a2b H e l l o -Output +Output: 01001000 01100101 @@ -22,12 +22,12 @@ Output a2h - Convert Ascii to Hex ========================== ``` -Usage +Usage: a2h H e l l o -Output +Output: 48 65 @@ -39,14 +39,14 @@ Output h2a - Convert Hex to Ascii ========================== ``` -Usage +Usage: h2a 48 65 6c 6c 6f - or - h2a 0x48 0x65 0x6c 0x6c 0x6f -Output +Output: H e l l o ```