From a1db43e03426b0eeabd7c83727fb1e4340412eee Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Thu, 25 May 2017 07:38:40 -0500 Subject: [PATCH] Readme Changes --- README.md | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0735a0e..0239098 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,15 @@ Just a couple bash utilities -= a2b - Convert Ascii to Binary = -== Usage == +a2b - Convert Ascii to Binary +============================= +Usage +----- ``` a2b H e l l o ``` -== Output == +Output +------ ``` 01001000 01100101 @@ -16,12 +19,15 @@ a2b H e l l o 01101111 ``` -= a2h - Convert Ascii to Hex = -== Usage == +a2h - Convert Ascii to Hex +========================== +Usage +----- ``` a2h H e l l o ``` -== Output == +Output +------ ``` 48 65 @@ -30,12 +36,15 @@ a2h H e l l o 6f ``` -= h2a - Convert Hex to Ascii = -== Usage == +h2a - Convert Hex to Ascii +========================== +Usage +----- ``` h2a 48 65 6c 6c 6f ``` -== Output == +Output +------ ``` H e l l o ```