Answers for "how to loop through lines in a file bach"

12

bash iterate over lines of a file

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

Code answers related to "how to loop through lines in a file bach"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language