execlp(file, *args) Execute the executable file (which is searched for along $PATH) with argument list args, replacing the current process.
(file, *args)
| 550 | execve(file, args[:-1], env) |
| 551 | |
| 552 | def execlp(file, *args): |
| 553 | """execlp(file, *args) |
| 554 | |
| 555 | Execute the executable file (which is searched for along $PATH) |
| 556 | with argument list args, replacing the current process. """ |
| 557 | execvp(file, args) |
| 558 | |
| 559 | def execlpe(file, *args): |
| 560 | """execlpe(file, *args, env) |