python shell运行当前程序、可以按下,这是运行在Python shell脚本的正确方法?

import subprocess

retcode = subprocess.call(["/home/myuser/go.sh", "abc.txt", "xyz.txt"])

When I run these 2 lines, will I be doing exactly this?:

/home/myuser/go.sh abc.txt xyz.txt

Why do I get this error? But when I run go.sh normally, I don't get that error.

File "/usr/lib/python2.6/subprocess.py", line 480, in call

return Popen(*popenargs, **kwargs).wait()

File "/usr/lib/python2.6/subprocess.py", line 633, in __init__

errread, errwrite)

File "/usr/lib/python2.6/subprocess.py", line 1139, in _execute_child

raise child_exception

OSError: [Errno 8] Exec format error

解决方案OSError: [Errno 8] Exec format error

This is an error reported by the operating system when trying to run /home/myuser/go.sh.

It looks to me like the shebang (#!) line of go.sh is not valid.

Here's a sample script that runs from the shell but not from Popen:

#\!/bin/sh

echo "You've just called $0 $@."

Removing the \ from the first line fixes the problem.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值