aboutsummaryrefslogtreecommitdiff
path: root/utils/hex2rgb.sh
blob: a8ccc38c5453bdddc05def56b4c39b53cbfbb905 (plain)
1
2
3
#!/bin/bash
hex="${1}"
printf "R: %d G: %d B: %d\n" 0x"${hex:0:2}" 0x"${hex:2:2}" 0x"${hex:4:2}"