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
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 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