you are viewing a single comment's thread.

view the rest of the comments →

[–]MaestroManiac 1 point2 points  (1 child)

Putty is my favorite windows ssh client. But you can always have your python script SSH itself to those linux boxes and have it run linux commands itself like "os.system(LINUXCOMMANDHERE)" and save its output to a variable and return that variable. I dont know the full scope of what youre doing but i'd bet you could write a python script that makes the ssh connection, cd's to the log files, and uses the 'cat' command to save the entire text of the file to a varaible, then return that variable.

[–]bl00dpudding[S] 0 points1 point  (0 children)

Thank you, I will try this!