I'm using a program called "prodigal" that does not output to stdout - instead you have to specify an output like so:
prodigal -o outfile.txt
Instead of going to a specific file I'd like to go stdout - is there a simple way to do this?
So something like this:
prodigal -o > stdout
Thanks!