本文目录一览:
- 1、shell脚本中怎么调用python脚本中的带参函数
- 2、如何在bash中调用python脚本?
- 3、在Python运行bash命令问题,怎么解决
- 4、如何在shell运行python
- 5、bash怎么运行python文件
shell脚本中怎么调用python脚本中的带参函数
Python 可以利用 sys.argv 拿到命令列上的 arguments:
$ python test.py 1 2 3
test.py:
import sys
print(sys.argv)
结果:
['test.py', '1', '2', '3']
所以你在 build_using_xctool.sh 中可以这样调度 python:
python /Users/gyd/Desktop/auto_send_email.py subject msg toaddrs fromaddr smtpaddr password
然後在 auto_send_email.py 中:
import sys # 自己 import sys...if __name__ == '__main__':
sendmail(*sys.argv[1:])
如何在bash中调用python脚本?
bash会带上一些环境变量过去。 如果你本身环境变量配置的好。也可以不用这么做,直接用python执行脚本,
如果python脚本本身第一行是#!/user/bin/python,而且属性是777那么,也可以直接执行这个脚本。
不过你在进程查看里会发现。它其实还是通过shell这个系统界面调用的python再调用的脚本。
在Python运行bash命令问题,怎么解决
最近有个需求就是页面上执行shell命令,第一想到的就是os.system,
复制代码代码如下:
os.system('cat /proc/cpuinfo')
但是发现页面上打印的命令执行结果 0或者1,当然不满足需求了。
尝试第二种方案 os.popen()
复制代码代码如下:
output = os.popen('cat /proc/cpuinfo')
print output.read()
通过 os.popen() 返回的是 file read 的对象,对其进行读取 read() 的操作可以看到执行的输出。但是无法读取程序执行的返回值)
尝试第三种方案 commands.getstatusoutput() 一个方法就可以获得到返回值和输出,非常好用。
复制代码代码如下:
(status, output) = commands.getstatusoutput('cat /proc/cpuinfo')
print status, output
Python Document 中给的一个例子,
复制代码代码如下:
import commands
commands.getstatusoutput('ls /bin/ls')
(0, '/bin/ls')
commands.getstatusoutput('cat /bin/junk')
(256, 'cat: /bin/junk: No such file or directory')
commands.getstatusoutput('/bin/junk')
(256, 'sh: /bin/junk: not found')
commands.getoutput('ls /bin/ls')
'/bin/ls'
commands.getstatus('/bin/ls')
'-rwxr-xr-x 1 root 13352 Oct 14 1994 /bin/ls'
最后页面上还可以根据返回值来显示命令执行结果。
如何在shell运行python
如果您是Linux或Unix系统,直接在shell输入python即可进入python交互环境。如果您是Windows系统,需要到Python官网下载页面中下载对应平台和版本的python包,解压并运行python安装程序,安装好python后配置环境变量,将C:\Python27(或Python34)加入环境变量即可
bash怎么运行python文件
$ python yourpyscript.py
or
$ chmod a+x yourpyscript.py
$ ./yourpyscript.py