Apologies in advance if this has been answered, but I couldn’t find it…
On windows command line (and native perl debugger) I can execute script.pl < inputfile.txt
In the script I can read the entire file e.g. chomp (my @recs = <STDIN>)
What I would like to do is to use komodo ide to do the same. Yes I can hardcode the file name, open it, etc., but is there a way to do it similar to the command line above? Passing it as a parameter does not work.