Re: [Tutor] run python script on another computer's terminal (LAN)

2009-08-11 Thread pedro
On 2009-08-11 05:27:19 -0400, "Alan Gauld" said: "pedro" 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:passw...@computer2.loca

Re: [Tutor] run python script on another computer's terminal (LAN)

2009-08-11 Thread Alan Gauld
"pedro" 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:passw...@computer2.local" do script "ls" end tell You might be bette

[Tutor] run python script on another computer's terminal (LAN)

2009-08-10 Thread pedro
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:passw...@computer2.local" do script "ls"