
Rex::Commands::Upload - Upload a local file to a remote server

With this module you can upload a local file via sftp to a remote host.

task "upload", "remoteserver", sub {
upload "localfile", "/remote/file";
};

Perform an upload. If $remote is a directory the file will be uploaded to that directory.
task "upload", "remoteserver", sub {
upload "localfile", "/path";
};