PuTTY : A free implementation of the telnet and ssh protocols for Unix and Windows.
Launching multiple putty sessions
console show
exec c:/putty/putty.exe {*}"-ssh user1@hostname1 -pw pwd &"
exec c:/putty/putty.exe {*}"-ssh user2@hostname2 -pw pwd &"
exitJM 7 Sep 2013 - pscp from the putty family of tools, see also plink
console show
proc action {} {
cd c:/putty
set f [open "|\"pscp.exe\" -l jorge -pw yourpwd [.from get]:[.path get] ."]
puts done
}
entry .from
entry .path -width 50
button .button -text get -command action
.from insert 0 [email protected]
.path insert 0 /home/jorge/sample.txt
pack .from .path .button