Skip to content

Instantly share code, notes, and snippets.

@thost96
Created December 22, 2017 13:23
Show Gist options
  • Save thost96/091a4e2ba1077d46a5f9744c2fdf084d to your computer and use it in GitHub Desktop.
Save thost96/091a4e2ba1077d46a5f9744c2fdf084d to your computer and use it in GitHub Desktop.
Hex to RGB
#!/bin/bash
hex=$1
printf "%d,%d,%d" 0x${hex:0:2} 0x${hex:2:2} 0x${hex:4:2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment