DonCnu has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: perl script to start the queu manger
by Anonymous Monk on Jul 03, 2013 at 06:32 UTC

    * your shebang is not a shebang

    * you're using @ARGV inside subroutines, better idea is to use @_, like

    #!/usr/bin/perl -- use strict; use warnings; use ... ## other stuff you use Main( @ARGV ); exit( 0 ); sub Main { my( $left, ... }

    * $ perl -c stuff

    Missing right curly or square bracket at stuff line 220, at end of lin +e syntax error at stuff line 220, at EOF stuff had compilation errors.

    * you're skipping a lot of error checking, add use autodie;

Re: perl script to start the queu manger
by zork42 (Monk) on Jul 03, 2013 at 09:01 UTC