#!/bin/bash # rm ./logins.csv while read line do touch ./temp.txt echo $line > ./temp.txt prenom=$(cut -d "," -f 1 ./temp.txt) nom=$(cut -d "," -f 2 ./temp.txt) initial=$(cut -c 1 ./temp.txt) id=$(echo $initial$nom | tr [:upper:] [:lower:]) passwd=$(echo $RANDOM | md5sum | head -c 8) echo $id","$passwd","$prenom","$nom","$(cut -d "," -f 5 ./temp.txt)"," >> ./logins.csv rm ./temp.txt done < ./Users.csv