I have the following .txt file:
Marco Paolo Antonio
I want to read it line-by-line, and for each
The following will just print out the content of the file:
cat $Path/FileName.txt while read line; do echo $line done