arc/scripts/random.sh
AuxXxilium 1d582d8e0c tree: cleanup
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-07-29 23:04:28 +02:00

7 lines
172 B
Bash
Executable File

#!/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
}