Looping through the content of a file in Bash

后端 未结 13 2368
傲寒
傲寒 2020-11-21 10:08

How do I iterate through each line of a text file with Bash?

With this script:

echo \"Start!\"
for p in (peptides.txt)
do
    echo \"${p}\"
done
         


        
13条回答
  •  鱼传尺愫
    2020-11-21 10:44

    #!/bin/bash
    #
    # Change the file name from "test" to desired input file 
    # (The comments in bash are prefixed with #'s)
    for x in $(cat test.txt)
    do
        echo $x
    done
    

提交回复
热议问题