JPsiotp/siotp/sisr1/tp4/createLogins.sh
Jarod Pauchet 0240b7d77a nouveau fichier : gitea.sh
nouveau fichier : siotp/sisr1/tp4/Users.csv
	nouveau fichier : siotp/sisr1/tp4/createLogins.sh
	nouveau fichier : siotp/sisr1/tp4/logins.csv
2024-04-04 14:11:54 +02:00

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