From a1aba478f611ee8fbaa5334549a34c379398859a Mon Sep 17 00:00:00 2001 From: "yann.lereuille" Date: Thu, 20 Feb 2025 14:04:03 +0100 Subject: [PATCH] Ajout du fichier createLogins.sh vFinale --- sisr1/tp04_scripts_admin/tp04/createLogins.sh | 31 +++++++++++++++++++ sisr1/tp04_scripts_admin/tp04/gitpush.sh | 18 +++++++++++ sisr1/tp04_scripts_admin/tp04/logins.csv | 30 ++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 sisr1/tp04_scripts_admin/tp04/createLogins.sh create mode 100644 sisr1/tp04_scripts_admin/tp04/gitpush.sh create mode 100644 sisr1/tp04_scripts_admin/tp04/logins.csv diff --git a/sisr1/tp04_scripts_admin/tp04/createLogins.sh b/sisr1/tp04_scripts_admin/tp04/createLogins.sh new file mode 100644 index 0000000..81c4402 --- /dev/null +++ b/sisr1/tp04_scripts_admin/tp04/createLogins.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +file='./Users.csv' +loginFile='./logins.csv' + + +rm $loginFile 2> /dev/null # Redirection des erreurs +touch $loginFile + + + +while read line # Utilisation d'une boucle while car plus paratique pour lire un fichier +do + # A chaque itération, writeFile va se réinitialiser + writeFile="" + + # A chaque itération récupère dans des variables le nom, prénom et le groupe + fName=$(echo $line | cut -d "," -f1 ) + lName=$(echo $line | cut -d "," -f2 ) + group=$(echo $line | cut -d "," -f5 ) + login=$(echo $fName | cut -c1)$lName + login=$(echo $login | tr [:upper:] [:lower:]) + login=$(echo $login | tr -dc [:alnum:]) + + # A chaque itération stocke le mot de passer pour chaque utilisateur dans password + password=$(tr -dc A-Za-z0-9 > $loginFile +done < $file \ No newline at end of file diff --git a/sisr1/tp04_scripts_admin/tp04/gitpush.sh b/sisr1/tp04_scripts_admin/tp04/gitpush.sh new file mode 100644 index 0000000..0eb5acc --- /dev/null +++ b/sisr1/tp04_scripts_admin/tp04/gitpush.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# Permet de vérifier si un message a été passé en argument +if [ -z "$1" ]; then + read -p "Erreur : Entrez un message : " $message +else + message=$1 + + +fi + + # Ajout des fichiers modifiés +git add . + +# Commit avec le message +git commit -m "$message" + +# Push vers le dépôt Gitea +git push -u https://yann.lereuille@gitea.lyc-lecastel.fr/yann.lereuille/siotp.git \ No newline at end of file diff --git a/sisr1/tp04_scripts_admin/tp04/logins.csv b/sisr1/tp04_scripts_admin/tp04/logins.csv new file mode 100644 index 0000000..30cb0d1 --- /dev/null +++ b/sisr1/tp04_scripts_admin/tp04/logins.csv @@ -0,0 +1,30 @@ +eberthelmot;EV14Ml0y;Ermengarde;Berthelmot;Accountant +kbunker;UH2lMt0J;Kassi;Bunker;Production +mmccallum;inL1wFGX;Moises;McCallum;Production +plune;CdeumP6l;Patrizio;Lune;Accountant +beverix;XkA92SNB;Blanch;Everix;Accountant +skibbel;DLPakOJc;Stafani;Kibbel;Production +imosdell;9zvwKjFJ;Ignacius;Mosdell;Management +jwallerbridge;Urz5FoAt;Jeana;Waller-Bridge;Management +edressel;cw2Nkpp4;Elroy;Dressel;Production +tstrettell;bfFjZ7oz;Thea;Strettell;Production +sinsoll;xn0Cu8zg;Solomon;Insoll;Accountant +cfeedome;Otm8KrwT;Carri;Feedome;Accountant +pchetwind;HM2D6QUl;Padraic;Chetwind;Management +sdugo;Mk8FhHgQ;Solly;D'Ugo;Production +kmaccostigan;4pyLSjtz;Konstanze;MacCostigan;Accountant +rpowlesland;6TqevQaP;Roxane;Powlesland;Management +okennealy;GGcTSPT2;Orelle;Kennealy;Production +ssoitoux;bLwFZDvY;Sukey;Soitoux;Production +nsyce;c3uHw3eB;Nelli;Syce;Production +cshillam;Pa3pzjrW;Clarisse;Shillam;Production +cgueny;32wmqRXb;Carin;Gueny;Management +driepel;bu7RmJUU;Donny;Riepel;Production +dralfe;UeEW6VTC;Daniella;Ralfe;Production +lclynmans;YpTIYcR3;Lexy;Clynmans;Production +gadamthwaite;etWk91hZ;Gardiner;Adamthwaite;Production +wlippett;Fyr0beDB;Woodman;Lippett;Production +nmunnion;Lr1cekvC;Nadya;Munnion;Production +lhabershon;VziwMTYz;Llewellyn;Habershon;Production +igreatrex;FahUQNQz;Isaak;Greatrex;Production +dfrostdyke;DcnA65DS;Darill;Frostdyke;Production