Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re (tilly) 1: Passing variables to scripts rans through 'do'

by tilly (Archbishop)
on Dec 02, 2001 at 19:54 UTC ( [id://128988]=note: print w/replies, xml ) Need Help??


in reply to Passing variables to scripts rans through 'do'

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.

  • Comment on Re (tilly) 1: Passing variables to scripts rans through 'do'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://128988]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 17:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found