This commit is contained in:
charlie.alves 2025-02-19 17:27:40 +01:00
parent 04bb496e71
commit 590b88c3fd
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/bash
fichier="./Users.csv"
while read ligne #définit la variable "ligne" comme le contenu de la ligne du fichier en cours de lecture
do
metier=$(echo $ligne | cut -d "," -f5)
if [[ $(grep $metier /etc/group) == "" ]] ; then
groupadd $metier
fi
done < $fichier

View File

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