I am somewhat new to running shell commands. Currently I am executing these one at a time in terminal like this:
python dna.py databases/small.csv sequences/1.txt
// result
python dna.py databases/small.csv sequences/2.txt
// result
python dna.py databases/small.csv sequences/3.txt
// result
etc...
Is there a way to put all these commands in a text file and run a single command that will execute them all at once? Lastly, I'd like to pipe this to a results.txt file.