in reply to How to run a command from Perl
The pairing needed can sometimes be needed in a specific order too. I had to spend an hour once, experimenting, because some of the options needed pairing, yet other options didn't. Drove me crazy. :-)my $command = "srver mgr"; my @options = ("-g $gateway", "-e $enterprise_server", etc, etc); #then system($command, @options);
|
|---|