Answers for "first line file bash"

12

for each line in file bash

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

linux get first line of file

# credit to Stack Overflow user in the source link

head -1 your_file
Posted by: Guest on August-23-2021

Code answers related to "first line file bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language