Question about an application

r0g aioe.org at technicalbloke.com
Mon Jan 4 02:05:23 EST 2010


rieh25 wrote:
> Thanks, I had forgotten about it. I'll investigate if there are ways to
> automate using it to run programs in several computers at the same time.
> 
> 
> Rodrick Brown wrote:
>> Take a look at ssh
>>


There are. Take a look at paramiko if you want to interface with SSH
within python. Depending on what you need to do it may well be easier to
use bash scripts / batch files or simply the CLI instead e.g.

ssh account_name at 192.168.x.x 'ls /' > root_folder_listing.txt

This line...
  starts ssh
  logs into account on machine 192.168.x.x
  executes ls
  pipes the data back to
  a file on your local machine

Easy peasy :)

Roger.



More information about the Python-list mailing list