bash-utils/a2b

6 lines
69 B
Plaintext
Raw Permalink Normal View History

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