création d'users

This commit is contained in:
aboulai.bayo 2025-02-20 14:53:10 +01:00
parent 66e5630d48
commit 05dc93b47a

View File

@ -0,0 +1,14 @@
#!/bin/bash
fichier=./logins.csv #le fichier
while read ligne
do
username=$(echo $ligne | cut -d ";" -f1)
useradd -m -s "/bin/bash" $username
group=$(echo $ligne | -d ";" -f5)
usermod -aG $group $username
echo $username:$passwd | chpasswd
chown $username:$username /home/$username
done < $fichier