This commit is contained in:
timeo.collado 2025-02-19 17:27:09 +01:00
parent 6d7b9fc0c5
commit 597346c2ed
3 changed files with 22 additions and 16 deletions

View File

@ -0,0 +1,16 @@
#!/bin/bash
fichier=./Users.csv
while read ligne #lis tous les lignes
do
#A chaque alitéartion, stocker le métier dans $metier
metier=$(echo $ligne | cut -d "," -f5)
echo $metier
if [[ $(grep $metier /etc/group) == "" ]] ; then
groupadd $metier
fi
done < $fichier

View File

@ -1,16 +0,0 @@
#!bin/bash
fichier=./Users.csv
while read ligne #lis tous les lignes
do
#A chaque alitéartion, stocker le métier dans $metier
metier=$(echo $ligne | cut -d "," -f5)
echo $metier
if [[ $(grep $metier /etc/group) == "" ]] ; then
groupadd $metier
fi
done < $fichier

View File

@ -0,0 +1,6 @@
#!/bin/bash
message=$1
git add .
git commit -m "$message"
git push -u https://timeo.collado@gitea.lyc-lecastel.fr/timeo.collado/siotp.git