I want to run a mysql
command and set the output of that to be a variable in my python script.
Here is the shell command I'm trying to run:
$ mysql my_database --html -e "select * from limbs" | ./script.py
Here is the python script:
#!/usr/bin/env python
import sys
def hello(variable):
print variable
How would I accept the variable in the python script and have it print the output?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…