bash Which line is correctly written to start a FOR loop with a sample.txt file code example
Example: read file line loop in bash
for word in $(cat peptides.txt); do echo $word; done
for word in $(cat peptides.txt); do echo $word; done