Skip to content

Instantly share code, notes, and snippets.

@markusfisch
Last active July 29, 2025 00:09
Show Gist options
  • Save markusfisch/6110640 to your computer and use it in GitHub Desktop.
Save markusfisch/6110640 to your computer and use it in GitHub Desktop.
Generate a random UUID in bash
#!/usr/bin/env bash
# Generate a pseudo UUID
uuid()
{
local N B C='89ab'
for (( N=0; N < 16; ++N ))
do
B=$(( $RANDOM%256 ))
case $N in
6)
printf '4%x' $(( B%16 ))
;;
8)
printf '%c%x' ${C:$RANDOM%${#C}:1} $(( B%16 ))
;;
3 | 5 | 7 | 9)
printf '%02x-' $B
;;
*)
printf '%02x' $B
;;
esac
done
echo
}
if [ "$BASH_SOURCE" == "$0" ]
then
uuid
fi
@dtwilliamson
Copy link

Hello. fyi, this can be much much simpler. RANDOM gives 16 bits of randomness, looping over %256 is wasting so much potential. Just:

Sorry, but RANDOM is only 15 bits.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment