我有一个 python 脚本'b.py',它每 5 秒打印一次。
while (1):
print "Start : %s" % time.ctime()
time.sleep( 5 )
print "End : %s" % time.ctime()
time.sleep( 5 )
在我的 a.py 中,我通过以下方式调用 b.py:
def run_b():
print "Calling run b"
try:
cmd = ["./b.py"]
p = subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
for line in iter(p.stdout.readline, b''):
print (">>>" + line.rstrip())
except OSError as e:
print >>sys.stderr, "fcs Execution failed:", e
return None
稍后,我通过以下方式杀死 'b.py': PS_PATH = "/usr/bin/ps -efW"
def kill_b(program):
try:
cmd = shlex.split(PS_PATH)
retval = subprocess.check_output(cmd).rstrip()
for line in retval.splitlines():
if program in line:
print "line =" + line
pid = line.split(None)[1]
os.kill(int(pid), signal.SIGKILL)
except OSError as e:
print >>sys.stderr, "kill_all Execution failed:", e
except subprocess.CalledProcessError as e:
print >>sys.stderr, "kill_all Execution failed:", e
run_b()
time.sleep(600)
kill_b("b.py")
我有 2 个问题。1. 为什么我没有看到“b.py”的任何打印结果,而当我执行“ps -efW”时,我没有看到名为“b.py”的进程?2. 为什么当我像上面那样杀死一个进程时,我看到“权限被拒绝”?
我在 windows 下的 cygwin 上运行上面的脚本。
谢谢你。