In your
first link the best suggestion was
from
chromatic. Instead of thinking in terms of executing
an external script, think in terms of calling a function.
Both are methods of executing arbitrary code, but the
advantage of a function is that it also has notions of how
to pass arguments.
The alternative is to use global variables to do your
communication. Global variables to communicate between
a mass of scripts that call each other haphazardly is a
short road to insanity. While it is the answer that you
asked for, I strongly recommend not doing that. Write
a module if you want your files to actually do something.
You may not have written a module before. If you
haven't, it isn't as hard
as people make it look. Take a look at Re (tilly) 1: Best way to fix a broken but functional program? for
a random instance. Just save that template to a file whose
name ends in ".pm", write a test script that uses it,
then start adding, running, and testing. That template
should serve you pretty well.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.