in reply to Re: Controlling Running Perl Scripts
in thread Controlling Running Perl Scripts

There's a minor typo:
our $sequence = ( "path1", "path2", # ... );
should probably read
our @sequence = ...
instead.

Replies are listed 'Best First'.
Re^3: Controlling Running Perl Scripts
by Anonymous Monk on Apr 25, 2007 at 17:47 UTC
    I am going to test with something like that!Thanks!
      Of course, modularize it so you can easily share it across all your scripts... if you only have one sequence then an array works... if you have multiple or may have multiple then I would either use files or a hash of arrays and pass the hash key or the file name between the CGIs that contains the proper sequence.

                      - Ant
                      - Some of my best work - (1 2 3)