[plug] Running a script to parse a script with args

Ryan ryan at is.as.geeky.as
Thu Aug 28 15:49:10 WST 2003


> Any ideas?

Use a system call in perl:
system('/my/perl/script some args') or die blahdy-blah;

backticks:
print `perl /my/perl/script some args`;

modularise the script:
you can do that bit :)

Or write/read/process the args to/from another file and make the script
pull them in if they exist

Ryan



More information about the plug mailing list