TP Shell
This commit is contained in:
parent
c11548b778
commit
66ba6ac484
10
Sio1/SISR1/40-ShellEtBash/crsamba1
Executable file
10
Sio1/SISR1/40-ShellEtBash/crsamba1
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
fich=users.txt
|
||||||
|
while read ligne
|
||||||
|
do
|
||||||
|
echo "${ligne}"
|
||||||
|
done < $fich
|
21
Sio1/SISR1/40-ShellEtBash/crsamba2
Executable file
21
Sio1/SISR1/40-ShellEtBash/crsamba2
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#set -e
|
||||||
|
#set -u
|
||||||
|
|
||||||
|
fich=$1
|
||||||
|
|
||||||
|
if [[ $# -ne 1 ]] ; then
|
||||||
|
echo "usage : $0 <fichier>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -r "${fich}" ]] ; then
|
||||||
|
echo "$0 : erreur ouverture ${fich}"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
while read ligne
|
||||||
|
do
|
||||||
|
echo "${ligne}"
|
||||||
|
done < $fich
|
22
Sio1/SISR1/40-ShellEtBash/crsamba4
Executable file
22
Sio1/SISR1/40-ShellEtBash/crsamba4
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#set -e
|
||||||
|
#set -u
|
||||||
|
|
||||||
|
if [[ $# -ne 1 ]] ; then
|
||||||
|
echo "usage : $0 <fichier>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -r "$1" ]] ; then
|
||||||
|
echo "$0 : erreur ouverture ${fich}"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
fich=$1
|
||||||
|
while read ligne
|
||||||
|
do
|
||||||
|
echo "${ligne}"|cut -d: -f1
|
||||||
|
done < $fich
|
24
Sio1/SISR1/40-ShellEtBash/crsamba5
Executable file
24
Sio1/SISR1/40-ShellEtBash/crsamba5
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#set -e
|
||||||
|
#set -u
|
||||||
|
|
||||||
|
if [[ $# -ne 1 ]] ; then
|
||||||
|
echo "usage : $0 <fichier>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -r "$1" ]] ; then
|
||||||
|
echo "$0 : erreur ouverture ${fich}"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
fich=$1
|
||||||
|
while read ligne
|
||||||
|
do
|
||||||
|
login=$(echo "${ligne}"|cut -d: -f1)
|
||||||
|
nom=$(echo "${ligne}"|cut -d: -f2)
|
||||||
|
echo "${login} ${nom}"
|
||||||
|
done < $fich
|
4
Sio1/SISR1/40-ShellEtBash/users.txt
Normal file
4
Sio1/SISR1/40-ShellEtBash/users.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
lucien:Lucien Aymar
|
||||||
|
claudine:Claudine Dupont
|
||||||
|
robert:Robert Michel
|
||||||
|
marcelle:Marcelle Parde
|
Loading…
x
Reference in New Issue
Block a user