in reply to Passing variables to scripts rans through 'do'
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.
|
|---|