nouveau fichier : siotp/sisr1/tp4/Users.csv nouveau fichier : siotp/sisr1/tp4/createLogins.sh nouveau fichier : siotp/sisr1/tp4/logins.csv
17 lines
387 B
Bash
17 lines
387 B
Bash
#!/bin/bash
|
|
#
|
|
rm ./logins.csv
|
|
while read line
|
|
do
|
|
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
|