execexec command
Terminates the currently running Perl script and executes
the program named in
command
. The Perl program does not
resume after the
command
may be a scalar containing a string with the
name of the program to run and any arguments. This string is
checked for shell metacharacters, and if there are any, passes
the string to command may also be a list value where the first element is parsed as the program name and remaining elements as arguments. For example: Theexec 'echo', 'Your arguments are: ', @ARGV;
exec
function is not implemented for Perl on Win32 platforms.
Copyright © 2001 O'Reilly & Associates. All rights reserved. |
|