Added my basic hex/ascii/binary conversion scripts

This commit is contained in:
2017-05-25 07:36:04 -05:00
parent e5467a1f64
commit 13066b37d7
4 changed files with 59 additions and 1 deletions

5
a2h Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
for c in $@; do
echo $c | xxd -p | cut -c1-2
done