Answers for "n of lines of file linux"

7

bash for each line of file

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

find how many lines in a file linux

wc -l <filename>
Posted by: Guest on March-05-2021

Code answers related to "n of lines of file linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language