création d'users
This commit is contained in:
parent
66e5630d48
commit
05dc93b47a
14
sisr1/tp04_scripts_admin/createUsers.sh
Normal file
14
sisr1/tp04_scripts_admin/createUsers.sh
Normal 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
|
Loading…
x
Reference in New Issue
Block a user