Answers for "how to iterate through every line in a file bash"

11

bash iterate over lines of a file

while read p; do
  echo "$p"
done <peptides.txt
Posted by: Guest on March-05-2020
0

read file line loop in bash

for word in $(cat peptides.txt); do echo $word; done
Posted by: Guest on August-14-2020

Code answers related to "how to iterate through every line in a file bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language