Ajouter createLogins.sh
This commit is contained in:
parent
8cbd2fef56
commit
b72178ba78
15
createLogins.sh
Normal file
15
createLogins.sh
Normal file
@ -0,0 +1,15 @@
|
||||
!/bin/bash
|
||||
rm ./logins.csv
|
||||
while read line
|
||||
do
|
||||
touch ./tem.txt
|
||||
echo $line > ./tem.txt
|
||||
prenom=$(cut -d "," -f 1 ./tem.txt)
|
||||
nom=$(cut -d "," -f 2 ./tem.txt)
|
||||
initial=$(cut -c 1 ./tem.txt)
|
||||
id=$(echo $initial$nom |tr [:upper:] [:lower:])
|
||||
passwd=$(echo $RANDOM| md5sum | head -c 8)
|
||||
echo $id","$passwd","$prenom","$nom","$(cut -d"," -f 5 ./tem.txt)"," >> ./logins.csv
|
||||
rm ./tem.txt
|
||||
done < ./Users.csv
|
||||
|
Loading…
x
Reference in New Issue
Block a user