从shell命令管道输出到python脚本

前端之家收集整理的这篇文章主要介绍了从shell命令管道输出到python脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想运行一个MysqL命令,并将其输出设置为我的python脚本中的一个变量.

这是我要运行的shell命令:

$MysqL my_database --html -e "select * from limbs" | ./script.py

这是python脚本:

#!/usr/bin/env python

import sys

def hello(variable):
    print variable

我如何接受python脚本中的变量并打印输出

您需要从stdin读取以获取python脚本中的数据,例如
#!/usr/bin/env python

import sys

def hello(variable):
    print variable

data = sys.stdin.read()
hello(data)

如果您想在这里完成所有操作,请从MysqL数据库获取一些数据,然后使用Python进行操作.我将跳过将其导入到脚本中,并使用the Python MySql module执行SQL查询.

原文链接:https://www.f2er.com/bash/386821.html

猜你在找的Bash相关文章