nextcloudpi/generate_cohortes.sh
Tobias Knöppler 6311d72ab8
Add utility_script generate_cohortes.sh
Signed-off-by: Tobias Knöppler <6317548+theCalcaholic@users.noreply.github.com>
2023-09-27 17:59:47 +02:00

17 lines
299 B
Bash
Executable File

#!/usr/bin/env bash
#min=$((101-${1:-50}))
all=({100..1})
cohortes=()
for i in ${all[@]:0:$1}
do
cohorte_id=$((RANDOM % i))
while [[ " ${cohortes[*]} " =~ .*" ${cohorte_id} ".* ]]
do
cohorte_id=$((cohorte_id+1))
done
cohortes+=($cohorte_id)
done
echo "${cohortes[*]}" | tr ' ' $'\n'