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)
| 566 | execvpe(file, args[:-1], env) |
| 567 | |
| 568 | def execvp(file, args): |
| 569 | """execvp(file, args) |
| 570 | |
| 571 | Execute the executable file (which is searched for along $PATH) |
| 572 | with argument list args, replacing the current process. |
| 573 | args may be a list or tuple of strings. """ |
| 574 | _execvpe(file, args) |
| 575 | |
| 576 | def execvpe(file, args, env): |
| 577 | """execvpe(file, args, env) |