aboutsummaryrefslogtreecommitdiff
path: root/unix/utils/hex2rgb.sh
diff options
context:
space:
mode:
Diffstat (limited to 'unix/utils/hex2rgb.sh')
-rwxr-xr-xunix/utils/hex2rgb.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/unix/utils/hex2rgb.sh b/unix/utils/hex2rgb.sh
deleted file mode 100755
index a8ccc38..0000000
--- a/unix/utils/hex2rgb.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-hex="${1}"
-printf "R: %d G: %d B: %d\n" 0x"${hex:0:2}" 0x"${hex:2:2}" 0x"${hex:4:2}"