script Bash

This commit is contained in:
Ayoub 2022-04-05 10:24:41 +02:00
commit 772b53aa19
9 changed files with 152 additions and 0 deletions

10
sisr1/40-bash/crsamba1.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
#crsamba1
fich=users.txt
while read ligne
do
echo "${ligne}"
done < $fich

22
sisr1/40-bash/crsamba2.sh Executable file
View File

@ -0,0 +1,22 @@
#!/bin/bash
#crsamba2
#set -e
#set -u
fich=$1
if [[ $# -ne 1 ]] ; then
echo "usage : $0 <fichier>"
exit 1
fi
if [[ ! -r "${fich}" ]] ; then
echo "$0 : Erreur d'ouverture du fichier ${fich}"
exit 2
fi
while read ligne
do
echo "${ligne}"
done < $fich

25
sisr1/40-bash/crsamba3.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
#crsamba2
#set -e
#set -u
fich=$1
if [[ $# -ne 1 ]] ; then
echo "usage : $0 <fichier>"
exit 1
fi
if [[ ! -r "${fich}" ]] ; then
echo "$0 : erreur d'ouverture du fichier ${fich}"
exit 2
fi
while read ligne
do
login=$(echo "${ligne}"|cut -f1 -d':' )
long=$(echo "${ligne}"|cut -f2 -d':')
echo "${login} ${long}"
done < $fich

33
sisr1/40-bash/crsamba4.sh Executable file
View File

@ -0,0 +1,33 @@
#!/bin/bash
#crsamba2
#set -e
#set -u
fich=$1
if [[ $# -ne 1 ]] ; then
echo "usage : $0 <fichier>"
exit 1
fi
if [[ ! -r "${fich}" ]] ; then
echo "$0 : erreur d'ouverture du fichier ${fich}"
exit 2
fi
while read ligne
do
login=$(echo "${ligne}"|cut -f1 -d':' )
long=$(echo "${ligne}"|cut -f2 -d':')
echo "${login} ${long}"
getent passwd "${login}" >> /dev/null
if [[ $? -ne 0 ]] ; then
useradd -m -d /home/"${login}" -s /bin/bash -c "${nom}" "${login}"
else
echo "$0 : utilisateur ${login} existant"
fi
done < ${fich}

20
sisr1/40-bash/eleve.sh Executable file
View File

@ -0,0 +1,20 @@
#/bin/bash
#set -e
set -u
if [[ $# -ne 1 ]] ; then
exit 1
fi
who | grep $1 > /dev/null
if [[ $? -eq 0 ]] ; then
echo "l'utilisateur $1 est connecté"
else
echo "l'utilisateur $1 n'est pas connecté"
fi
exit 0

29
sisr1/40-bash/rmsamba.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/bash
#crsamba2
#set -e
#set -u
fich=$1
if [[ $# -ne 1 ]] ; then
echo "usage : $0 <fichier>"
exit 1
fi
if [[ ! -r "${fich}" ]] ; then
echo "$0 : erreur d'ouverture du fichier ${fich}"
exit 2
fi
while read ligne
do
login=$(echo "${ligne}"|cut -f1 -d':' )
getent passwd "${login}" >> /dev/null
if [[ $? -eq 0 ]] ; then
sudo userdel --remove "${login}"
echo "Utilisateur ${login} supprime"
fi
done < $fich

5
sisr1/40-bash/users.txt Normal file
View File

@ -0,0 +1,5 @@
Lucien
Claudine
Robert
Marcelle

View File

@ -0,0 +1,4 @@
:
:
:
:

4
sisr1/40-bash/users2.txt Normal file
View File

@ -0,0 +1,4 @@
Lucien:Lucien Aymar
Claudine:Claudine Boudart
Robert:Robert Pascal
Marcelle:Marcelle Dupont