I'm trying to write a shell script that will run a python file that takes in some raw input. The python script is essentially along the lines of:
def main():
name=raw_input("What's your name?")
print "Hello, "+name
main()
I want the shell script to run the script and automatically feed input into it. I've seen plenty of ways to get shell input from what a python function returns, or how to run a shell from python with input, but not this way around. Basically, I just want something that does:
python hello.py
# give the python script some input here
# then continue on with the shell script.