Answers for "bash get lines of file"

7

bash for each line of file

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

bash get line from file

sed 'NUMq;d' file
Posted by: Guest on October-18-2021

Code answers related to "bash get lines of file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language