Answers for "go through a file line by line bash"

11

for each line in file bash

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

bash loop lines in file

#!/bin/bash
filename='peptides.txt'
echo Start
while read p; do 
    echo $p
done < $filename
Posted by: Guest on April-26-2021

Code answers related to "go through a file line by line bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language