We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Connect to a remote PuTTY SSH Server And Execute Commands
plink :unpack do |plink| plink.command = "path/to/plink.exe" plink.host = "mywebserver" plink.port = "1234" plink.user = "username" plink.key = "kefile" plink.remote_commands "cd /webapp/", "unzip website.zip" end