I have a perl script which asks routine questions for input. Rather than do manual input, I'd like to put the answers in a file and use some kind of re-direction to feed input to the script.
I tried 'myfile.pl < pl_input.txt' where '<' is the input operator in DOS. But it doesn't work as expected with my perl script.
Advice?
Any help appreciated.