#!/bin/bash set -o errexit set -o nounset fich='user.txt' while read ligne do echo "${ligne}" done < "${fich}" exit 0