From a5451875f916959e79ba59adf0795c308cab71ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20D=C3=A9pr=C3=A9s?= Date: Fri, 25 Mar 2022 10:39:57 +0100 Subject: [PATCH] Fin TP Shell --- Sio1/SISR1/40-BashEtShell/crsamba8 | 35 ++++++++++++++++++++++++ Sio1/SISR1/40-BashEtShell/users2.txt | 10 +++++++ Sio1/SISR1/40-BashEtShell/users2.txt.pwd | 16 +++++++++++ 3 files changed, 61 insertions(+) create mode 100755 Sio1/SISR1/40-BashEtShell/crsamba8 create mode 100644 Sio1/SISR1/40-BashEtShell/users2.txt create mode 100644 Sio1/SISR1/40-BashEtShell/users2.txt.pwd diff --git a/Sio1/SISR1/40-BashEtShell/crsamba8 b/Sio1/SISR1/40-BashEtShell/crsamba8 new file mode 100755 index 0000000..0a787b0 --- /dev/null +++ b/Sio1/SISR1/40-BashEtShell/crsamba8 @@ -0,0 +1,35 @@ +#!/bin/bash + +#set -e +#set -u + +if [[ $# -ne 1 ]] ; then + echo "usage : $0 " + exit 1 +fi + +if [[ ! -r "$1" ]] ; then + echo "$0 : erreur ouverture ${fich}" + exit 2 +fi + +fich=$1 +while read ligne +do + echo "$ligne" | grep "^#" >> /dev/null && continue + [[ -z "$ligne" ]] && continue + login=$(echo "${ligne}"|cut -d: -f1) + nom=$(echo "${ligne}"|cut -d: -f2) + #echo "${login} ${nom}" + getent passwd "${login}" >> /dev/null + if [[ $? -ne 0 ]] ; then + sudo useradd --create-home --home-dir /home/"${login}" --shell /bin/bash --comment "${nom}" "${login}" + mdp=$(pwgen 6 1) + #echo "${mdp}" + echo "${login}:${mdp}"|chpasswd + echo "${login}:${mdp}" >> "${fich}.pwd" + else + echo "$0 : utilisateur ${login} existe deja" + fi +done < $fich + diff --git a/Sio1/SISR1/40-BashEtShell/users2.txt b/Sio1/SISR1/40-BashEtShell/users2.txt new file mode 100644 index 0000000..c88445d --- /dev/null +++ b/Sio1/SISR1/40-BashEtShell/users2.txt @@ -0,0 +1,10 @@ + + + +# Salut +lucien:Lucien Dubois +#-_-_-_-_-_-_-_-_-_-_-_- +claudine:Claudine Dupont +robert:Robert Dupond +# , j +marcelle:Marcelle Parde diff --git a/Sio1/SISR1/40-BashEtShell/users2.txt.pwd b/Sio1/SISR1/40-BashEtShell/users2.txt.pwd new file mode 100644 index 0000000..bb118fb --- /dev/null +++ b/Sio1/SISR1/40-BashEtShell/users2.txt.pwd @@ -0,0 +1,16 @@ +lucien:oi6ooG +claudine:Aru6Vi +robert:ooGa5c +marcelle:lau7Eu +lucien:ca2liJ +claudine:Quoo6o +robert:LooKi9 +marcelle:Iegh3b +lucien:Wah4fu +claudine:Yae3th +robert:phi1Is +marcelle:Bip8Sh +lucien:ja1EeS +claudine:za1voG +robert:UMieM3 +marcelle:Emix6X