I have the following .txt file:
Marco Paolo Antonio
I want to read it line-by-line, and for each
For proper error handling:
#!/bin/bash set -Ee trap "echo error" EXIT test -e ${FILENAME} || exit while read -r line do echo ${line} done < ${FILENAME}