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
#!/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