in reply to Passing parameters into a perl program.
basicdez,
sure.
- Pass 'em on the command line then read them out of @ARGV
- skip backticks and system, use fork /exec, and pipe and send them from the parent to the child via STDIN
- slightly more complicated: IPC
-derby