Horje
read file line loop in bash Code Example
for each line in file bash
while read p; do
  echo "$p"
done <peptides.txt
bash read a file line by line
#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
  echo "$line"
done < "$input"
read file line loop in bash
for word in $(cat peptides.txt); do echo $word; done




Shell

Related
git log filter merge commits Code Example git log filter merge commits Code Example
mongodb clone database Code Example mongodb clone database Code Example
convert ppk to pem Code Example convert ppk to pem Code Example
curl download file without output Code Example curl download file without output Code Example
git check merged branches Code Example git check merged branches Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10