2021-09-30 15:45:04 +02:00

11 lines
122 B
Bash
Executable File

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