#!/usr/bin/env bash function genRandomValue() { for i in 0 1 2 3 4 5 6 7 8 9 A B C D E F G H J K L M N P Q R S T V W X Y Z; do echo ${i} done | sort -R | tail -1 }