In article 
<[email protected]>,
 Chris Rebert <[email protected]> wrote:
> On Tue, Aug 11, 2009 at 3:25 PM, pedro<[email protected]> wrote:
> > Hi, does anyone know how to send a command that is within a python
> > script to another computer's terminal. This is what it looks like in
> > Applescript.
> > tell application "Terminal" of machine
> > "eppc://USERNAME:[email protected]"
> >                                do script "ls"
> >                        end tell
> What is "eppc://"? I can't seem to find anything on it.

"eppc:" is the protocol-identifier for Remote Apple Events, i.e. 
executing AppleScripts on remote machines.  (That's what that Sharing 
system preference is for.)

You want to install and use appscript.  Something like this should work:

>>> from appscript import *
>>> term=app("Terminal",url="eppc://USERNAME:[email protected]")
>>> term.do_script("ls")

http://appscript.sourceforge.net/py-appscript/doc/appscript-manual/07_app
licationobjects.html

-- 
 Ned Deily,
 [email protected]

_______________________________________________
Pythonmac-SIG maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/pythonmac-sig

Reply via email to