cconvert: Add hex to RGB color converter

Shamelessly stolen from https://stackoverflow.com/questions/7253235/convert-hexadecimal-color-to-decimal-rgb-values-in-unix-shell-script
This commit is contained in:
Salt 2018-06-21 09:07:00 -05:00
parent e0f4b57807
commit 8d919094d5

2
cconvert Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
printf "%d %d %d\n" 0x${1:0:2} 0x${1:2:2} 0x${1:4:2}