NAME
Rex::Commands::Download - Download remote files
DESCRIPTION
With this module you can download a remotefile via sftp, http and ftp from a host to your local computer.
SYNOPSIS
# sftp
task "download", "remoteserver", sub {
download "/remote/file", "localfile";
};
# http
task "download2", sub {
download "http://server/remote/file";
};