in reply to Exec() argument format
Aside, you'll generally want to use system rather than exec because exec never returns. Instead, it replaces the currently running program with the program passed as the first parameter.exec('ComLine.pl', @args ) or die "Can't exec: $!";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Exec() argument format
by MonkPaul (Friar) on Jul 25, 2005 at 21:52 UTC | |
by sacked (Hermit) on Jul 25, 2005 at 22:27 UTC | |
by MonkPaul (Friar) on Jul 25, 2005 at 22:47 UTC | |
by sgifford (Prior) on Jul 26, 2005 at 02:30 UTC |