in reply to Combining perl scripts

There are a lot of ways to communicate between two perl scripts somehow, but I expect none of them works the way you expect it.

You can't magically share variables between two unrelated perl interpreters. But you have some other possibilities:

Probably not exactly what you were looking for, but I hope it helps.

Cheers, Flo

Replies are listed 'Best First'.
Re^2: Combining perl scripts
by skyraven (Initiate) on Mar 20, 2006 at 00:42 UTC
    Thanks.

    I'll be looking into the daemon possibility ayrnieu has given me and into the shared memory option you suggested.