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