#!/bin/bash OLDIFS=$IFS IFS="," while read nom do echo "Création de $nom" id="${prenom:0:1}${nom}" id=${id,,} echo $id ./create_u.sh $id #./add_mail.sh $id done < $1 IFS=$OLDIFS