Readme Change

This commit is contained in:
Brian Buller 2017-05-25 07:41:25 -05:00
parent fba910620f
commit 31fe3b9536
1 changed files with 6 additions and 6 deletions

View File

@ -5,12 +5,12 @@ Just a couple bash utilities
a2b - Convert Ascii to Binary a2b - Convert Ascii to Binary
============================= =============================
``` ```
Usage Usage:
a2b H e l l o a2b H e l l o
Output Output:
01001000 01001000
01100101 01100101
@ -22,12 +22,12 @@ Output
a2h - Convert Ascii to Hex a2h - Convert Ascii to Hex
========================== ==========================
``` ```
Usage Usage:
a2h H e l l o a2h H e l l o
Output Output:
48 48
65 65
@ -39,14 +39,14 @@ Output
h2a - Convert Hex to Ascii h2a - Convert Hex to Ascii
========================== ==========================
``` ```
Usage Usage:
h2a 48 65 6c 6c 6f h2a 48 65 6c 6c 6f
- or - - or -
h2a 0x48 0x65 0x6c 0x6c 0x6f h2a 0x48 0x65 0x6c 0x6c 0x6f
Output Output:
H e l l o H e l l o
``` ```