mirror of
https://github.com/AuxXxilium/arc.git
synced 2024-11-23 19:09:53 +07:00
1d582d8e0c
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
7 lines
172 B
Bash
Executable File
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
|
|
} |