execl(file, *args) Execute the executable file with argument list args, replacing the current process.
(file, *args)
| 565 | __all__.append("fwalk") |
| 566 | |
| 567 | def execl(file, *args): |
| 568 | """execl(file, *args) |
| 569 | |
| 570 | Execute the executable file with argument list args, replacing the |
| 571 | current process. """ |
| 572 | execv(file, args) |
| 573 | |
| 574 | def execle(file, *args): |
| 575 | """execle(file, *args, env) |