execvp(file, args) Execute the executable file (which is searched for along $PATH) with argument list args, replacing the current process. args may be a list or tuple of strings.
(file, args)
| 609 | execvpe(file, args[:-1], env) |
| 610 | |
| 611 | def execvp(file, args): |
| 612 | """execvp(file, args) |
| 613 | |
| 614 | Execute the executable file (which is searched for along $PATH) |
| 615 | with argument list args, replacing the current process. |
| 616 | args may be a list or tuple of strings. """ |
| 617 | _execvpe(file, args) |
| 618 | |
| 619 | def execvpe(file, args, env): |
| 620 | """execvpe(file, args, env) |