Answers for "for bash each line"

12

for each line in file bash

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

shell foreach line

cat file | while read -r a; do echo $a; done
Posted by: Guest on January-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language