bash script read each line of a file by command read file code example
Example 1: sh read file line by line
#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
echo "$line"
done < "$input"
Example 2: read file line loop in bash
for word in $(cat peptides.txt); do echo $word; done