#!/bin/bash

echo "k3d-uuidgen version 0.6.6.0"
echo "You can paste the following unique ID into your new K-3D plugin or module:"

id=$(uuidgen);
echo 0x${id:0:8}, 0x${id:9:4}${id:14:4}, 0x${id:19:4}${id:24:4}, 0x${id:28}

