Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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:

  • Use some way of interprocess communication to exchange the values
    • Write the calculated values somewhere on the disk and read them in the second script
    • Use sockts to communicate
    • Use shared memorie or somesuch
  • Why use seperate scripts for everything? Use one script that does it all
    • Probably seperate the code in modules so you can still have those small scripts doing exactly one task without duplicating code
    • That way it's easily possible to use the results of the first calculation in the later code as you're inside the same perl interpreter and can pass everything around

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

Cheers, Flo


In reply to Re: Combining perl scripts by rafl
in thread Combining perl scripts by skyraven

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-24 12:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found