how to loop through a file to print out a specific line in FILE *fptr1, *fptr2; code example
Example: bash iterate over lines of a file
while read p; do
echo "$p"
done <peptides.txt
while read p; do
echo "$p"
done <peptides.txt