Go to file
Brian Buller 31fe3b9536 Readme Change 2017-05-25 07:41:25 -05:00
LICENSE Initial commit 2017-05-25 07:24:28 -05:00
README.md Readme Change 2017-05-25 07:41:25 -05:00
a2b Added my basic hex/ascii/binary conversion scripts 2017-05-25 07:36:04 -05:00
a2h Added my basic hex/ascii/binary conversion scripts 2017-05-25 07:36:04 -05:00
h2a Added my basic hex/ascii/binary conversion scripts 2017-05-25 07:36:04 -05:00

README.md

bash-utils

Just a couple bash utilities

a2b - Convert Ascii to Binary

Usage:

a2b H e l l o


Output:

01001000
01100101
01101100
01101100
01101111

a2h - Convert Ascii to Hex

Usage:

a2h H e l l o


Output:

48
65
6c
6c
6f

h2a - Convert Hex to Ascii

Usage:

h2a 48 65 6c 6c 6f
- or -
h2a 0x48 0x65 0x6c 0x6c 0x6f


Output:

H e l l o