#!/usr/bin/env bash
#
# uuidprint - generate and print a lower-case UUID v4

set -e

uuidgen | tr '[:upper:]' '[:lower:]' | tr -d '\n'