Consider a command like
yum install boto
When I execute in terminal, to proceed is asks me for yes/no
Can I respond to it in python like
os.system("yum install boto")
Next "Yes"
is to be passed to terminal through the same python code so that it installs. Well, I dont think this works. If it is written after tha above statement
os.system("yes")
Please tell me if this is possible?