Re: how to make script interact with another script

2006-03-20 Thread M�ta-MCI
Hi! Few ways : - use TCP/IP server+client (this can also run via a LAN or Internet) - use mmap (this can run Python<=>Python, Python<=>Ruby, etc.) - use a file (and win persistance) - use telepathy (Oups! Sorry, the module is not published yet) - etc. MCI -- http://mail.python.org/m

Re: how to make script interact with another script

2006-03-20 Thread bruno at modulix
Chason Hayes wrote: > How can I get a script to pipe data to another program, wait for a > response, then send more data etc. > > For example, from a script, I want to run smbclient then send it the > username, password, and then some commands. (I know there are better ways > to achieve this funct

how to make script interact with another script

2006-03-20 Thread Chason Hayes
How can I get a script to pipe data to another program, wait for a response, then send more data etc. For example, from a script, I want to run smbclient then send it the username, password, and then some commands. (I know there are better ways to achieve this functionality, it is the principle th