in reply to Re^2: How to display the .pl process in command line
in thread How to display the .pl process in command line

IO::File and IO::Tee. Not sure what IP::File is, looks like a typo. You may have to 'use IO::File'. It is a core module.
  • Comment on Re^3: How to display the .pl process in command line

Replies are listed 'Best First'.
Re^4: How to display the .pl process in command line
by astronogun (Sexton) on Mar 28, 2012 at 03:25 UTC
    Hmm how about this? I want it to make it simpler... After running the script (the one I posted above) it will display "Ok" or if it's failed it will display an error message.. I'm reading regarding STDIN, STDOUT and STDERR.. but I'm having hard time understanding... Any ideas?
Re^4: How to display the .pl process in command line
by astronogun (Sexton) on Mar 28, 2012 at 03:28 UTC

    Hmm how about this? I want it to make it simpler... After running the script (the one I posted above) it will display "Ok" or if it's failed it will display an error message.. I'm reading regarding STDIN, STDOUT and STDERR.. but I'm having hard time understanding... Any ideas?

      Yup

      # ... Code ... print "Ok\n"; # ... Code ... print "Error: <insert error message>\n";