execlpe(file, *args, env) Execute the executable file (which is searched for along $PATH) with argument list args and environment env, replacing the current process.
(file, *args)
| 557 | execvp(file, args) |
| 558 | |
| 559 | def execlpe(file, *args): |
| 560 | """execlpe(file, *args, env) |
| 561 | |
| 562 | Execute the executable file (which is searched for along $PATH) |
| 563 | with argument list args and environment env, replacing the current |
| 564 | process. """ |
| 565 | env = args[-1] |
| 566 | execvpe(file, args[:-1], env) |
| 567 | |
| 568 | def execvp(file, args): |
| 569 | """execvp(file, args) |