I have this bash script which prints out ~800 commands I would like to run on the command line:
paste abyss_names.txt abyss_quast.txt | while IFS="$(printf '\t')" read -r f1 f2
do
printf 'python /quast-2.3/quast.py -o %s %s \n' "$f1 $f2"
done
How do I send the print output directly to the unix shell command line?