premier ajout

This commit is contained in:
Mathis
2022-03-25 11:35:04 +01:00
parent 17ca140ec3
commit b89810764c
8 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
set -e
set -u
#Code
if [[ $# -ne 1 ]] ; then
echo "usage : $0 <fichier>"
exit 1
fi
fichier=$1
while read ligne
do
echo $ligne
done < $fichier