Answers for "bash lines in file"

11

bash iterate over lines of a file

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

bash lines to one line

LINE=$(paste -sd ' ' $FILE)
Posted by: Guest on April-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language