For Every Line In File Bash Linux Command Code Example


Example 1: bash for each line of file


while read p; do
echo "$p"
done <peptides.txt

Example 2: for each line in file bash


while read p; do
echo "$p"
done <peptides.txt

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy