Support wrote:
> Hello,
>
>
>
> I am working on a module, and have noticed that
>
> "my $results=`/usr/local/excute/fire`;"
>
> always has priority in running in a cgi file.
>
> Problem here is that I would like other code to run before
>
> "my $results=`/usr/local/excute/fire`;"
>
> once the other code processes,
>
> "my $results=`/usr/local/excute/fire`;" may run.
>
>
>
> My question is how do I make code run in the order I would like?
That program will only run when that line of code is reached, so
if you put the line
my $output = `/path/to/other/program`;
before it, then the other program would execute first.
- Jamie
|