Lire le fichier à l'aide du script shell

#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
  echo "$line"
done < "$input"
Thankful Tapir