in reply to Re: user input behavior from within a subroutine
in thread user input behavior from within a subroutine

Thanks to ptum, rodion, ikegami, and liverpole for all your assistance. I found out that the source of my problem was a line that looked like:

my @array=`cat path_to_target_file`;

I changed that portion of the code to an open()/close() operation and the problem went away.
  • Comment on Re^2: user input behavior from within a subroutine