bash-utils/a2b

6 lines
69 B
Bash
Executable File

#!/bin/bash
for c in $@; do
echo $c | xxd -b | cut -d" " -f2
done