That's not what require does at all.
Depending on what exactly you want to do, you'll need
one of system, exec or qx//.
You should read the docs on these or search for them at
this site.
--
<http://www.dave.org.uk>
"Perl makes the fun jobs fun
and the boring jobs bearable" - me
| [reply] |
HAve a look at the system command or backticks in perlfunc.
For example:
system("csh this_script.csh");
$japh->{'Caillte'} = $me;
| [reply] [d/l] [select] |
Hi,
it seems to me that you didn't want to read some manual, hm?
Thus in order to have you actually learn something, I just point
you to a current question in the Categorized Questions And Answers section.
If I understand your question right, this should just answer it. If not, excuse me, but if it did,
you should consider a little reading before asking The Monks.
Regards
Stefan K
$dom = "skamphausen.de"; ## May The Open Source Be With You!
$Mail = "mail@$dom; $Url = "http://www.$dom";
| [reply] [d/l] |
The best way I can think of:
rewrite it in perl!
Seriously though, you'll learn a ton, and make the perl that you're writing that much more system independant (maybe)
-- Dave | [reply] |