在Python中使用forks和os.execl给了我OSError

时间:2019-04-01 15:11:10

标签: python execl

我有一个更大的程序(大约150行),但这似乎是我唯一的问题。我设法减少了这个问题,并将其做成一个较小的程序。本质上,它会分叉程序并尝试执行linux命令(我正在使用ubuntu运行它)。我得到以下输出:

Current instruction is bin/ls
Current instruction is bin/ls

Child PID is 984
Traceback (most recent call last):
 File "./Test.py", line 17 in <module>
   makeFork("bin/ls")
 File "./Test.py", line 12, in makeFork
   os.execl(instruction, instruction)
 File "/usr/lib/python2.7/os.py", line 314, in execl
   execv(file, args)
OSError: [Errno2] No such file or directory

Parent PID is 4

下面是程序的代码

import os
from time import sleep
os.system("clear")

def makeFork(instruction):
    PID = os.fork() #Creating a fork for the child process
    sleep(2)
    print("Current instruction is " + instruction)
    if PID == 0:
        print("\nChild PID is " + format(os.getpid()))
        os.execl(instruction, instruction)
    sleep(2)
    print("\nParent PID is " + format(os.getppid()))


makeFork("bin/ls")

我要去哪里错了?

1 个答案:

答案 0 :(得分:1)

NODE_ENV不是bin/ls:没有前导/bin/ls的名称是相对于您当前的工作目录的,因此要求您的当前目录具有一个包含可执行文件/的名为bin的子目录。

因为不存在这样的目录,所以您得到errno 2(“没有这样的文件或目录”)。将您的调用更改为:

ls

...它可以正常运行。