3 lines
65 B
Plaintext
3 lines
65 B
Plaintext
|
#!/bin/bash
|
||
|
printf "%d %d %d\n" 0x${1:0:2} 0x${1:2:2} 0x${1:4:2}
|