in reply to Re: my compiled perl script is waiting for input
in thread my compiled perl script is waiting for input

qx() won't do what he wants either. He just needs to move the "or die" part down a few lines so that it is after the call to system and change it to "and die" since system is about the only Perl routine that return a false value for success.

        - tye (but my friends call me "Tye")
  • Comment on (tye)Re: my compiled perl script is waiting for input