MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / execlp

Function execlp

tools/python-3.11.9-amd64/Lib/os.py:552–557  ·  view source on GitHub ↗

execlp(file, *args) Execute the executable file (which is searched for along $PATH) with argument list args, replacing the current process.

(file, *args)

Source from the content-addressed store, hash-verified

550 execve(file, args[:-1], env)
551
552def 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
559def execlpe(file, *args):
560 """execlpe(file, *args, env)

Callers

nothing calls this directly

Calls 1

execvpFunction · 0.85

Tested by

no test coverage detected