Skip to content
Snippets Groups Projects
Verified Commit 5e581913 authored by David Beniamine's avatar David Beniamine
Browse files

Same number convention

parent 2b3cae69
No related branches found
No related tags found
No related merge requests found
......@@ -20,15 +20,15 @@ TEACH_LEVELS="prof"
rm -f $output
for i in `seq 1 $1`
do
num=`printf "%02d" $i`
for l in $STUDENT_LEVELS
do
num=`printf "%02d" $i`
save_uid -$num $l $l `randomgender` Eleves
done
for l in $TEACH_LEVELS
do
gender=`[ $(( $RANDOM % 2 )) == 1 ] && echo "M" || echo "F"`
save_uid -$i $l $l `randomgender` Profs
save_uid -$num $l $l `randomgender` Profs
done
done
save_uid on directi direction `randomgender` Administratifs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment