in reply to Passing a required script arguments
How do you intent to process the arguments?
Something is wrong with your perception of how Perl works. If you want to call a program (with or without arguments), use system, not require. If you want to load a module, and give that some arguments, use "use", like:
the arguments are then passed on to the import() subroutine.use Module "arg1", "arg2", "arg3";
Abigail
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Passing a required script arguments
by sauoq (Abbot) on Sep 26, 2003 at 15:51 UTC | |
by Abigail-II (Bishop) on Sep 26, 2003 at 16:16 UTC | |
by sauoq (Abbot) on Sep 26, 2003 at 17:07 UTC | |
by bart (Canon) on Sep 27, 2003 at 00:02 UTC | |
|