bash for each line code example
Example 1: bash iterate over lines of a file
while read p; do
echo "$p"
done <peptides.txt
Example 2: bash for each line of file
while read p; do
echo "$p"
done <peptides.txt
Example 3: shell foreach line
cat file | while read -r a; do echo $a; done