How do you redirect commands to a Unix process initiated from a Python script? For example: import os runcmd='rlogin othersystem' os.system(runcmd) password='mypassword' #now I would like to input my password here #obviously os.sytem(password) does not work. ??? Regards, Fahri