Answers for "shell script while loop one line file"

2

bash for loop one line

# Basic syntax:
for i in a b; do echo $i; done
Posted by: Guest on February-15-2022
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 "shell script while loop one line file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language