#!/bin/bash
# ----------------------------------------------
nomlogiciel="$(basename "$0")"
FONCTION="Infos sur les utilisateurs d'un système depuis le fichier /etc/passwd"
VERSION="alpha"
# NOTES DE VERSIONS
# ----------------------------------------------
# à mettre au début d'un fichier bash
PID=$$
FIFO=/tmp/FIFO${PID}
mkfifo ${FIFO}
# ----------------------------------------------
echo "lancement $nomlogiciel..."
while IFS=: read user pass uid gid full home shell  
do  
echo -e "$full :
\t Pseudo : $user  
\t UID :\t\t $uid
\t GID :\t\t $gid  
\t Home :\t\t $home  
\t Shell :\t $shell
--------------------"  
done < "/etc/passwd"
exit 0