GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Rex::Commands::Upload(3) User Contributed Perl Documentation Rex::Commands::Upload(3)

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";
 };

This function supports the following hooks:

before
This gets executed before anything is done. All original parameters are passed to it.

The return value of this hook overwrites the original parameters of the function-call.

before_change
This gets executed right before the new file is written. The local file name, and the remote file name are passed as parameters.
after_change
This gets executed right after the file was written. On top of the local file name, and the remote file name, any returned results are passed as parameters.
after
This gets executed right before the "upload()" function returns. All original parameters, and any results returned are passed to it.
2021-07-05 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.