Supprimer 'Sio1/SISR1/40-ShellEtBash/crsamba5'

This commit is contained in:
Louis Déprés 2022-03-25 09:33:11 +01:00
parent 66ba6ac484
commit 59057cbb21

View File

@ -1,24 +0,0 @@
#!/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