Download the PHP package cullylarson/ssh-copy without Composer
On this page you can find all versions of the php package cullylarson/ssh-copy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cullylarson/ssh-copy
More information about cullylarson/ssh-copy
Files in cullylarson/ssh-copy
Package ssh-copy
Short Description A library for performing remote copies. Copy to/from local, to/from remote, and even between two remote machines.
License MIT
Homepage https://github.com/cullylarson/ssh-copy
Informations about the package ssh-copy
SSH Copy
A library for performing remote copies. Copy to/from local, to/from remote, and even between two remote machines.
Install
Construct
You'll do everything with an instance of Cully\Ssh\Copier
. Its constructor takes three
parameters:
-
$sshSource (resource|null) (optional, default:null) An SSH connection resource. If null, will assume the source is the local machine. If its a resource, will assume the source is a remote machine.
-
$sshDestination (resource|null) (optional, default:null) An SSH connection resource. If null, will assume the destination is the local machine. If its a resource, will assume the destination is a remote machine.
- $localTmp (string|null) (optional, default:null) If copying between two remote machines, the copy will first transfer the files to from the remote source, to the local machine, and then to the remote destination. So, you need to provide a temporary folder to house the files locally.
copy
The Cully\Ssh\Copier::copy
function takes two arguments:
-
$sourceFilepath (string|array) (required) The path to the file that you want to copy from the source machine. Instead of passing a single path, you can pass an array of paths to files you want to copy. If an array is provided, the $destFilepath parameter must also be an array of the same length.
- $destFilepath (string|array) (required) The path on the destination machine, where you want the file copied. Instead of passing a single path, you can pass an array of paths to files you want to copy. If an array is provided, the $sourceFilepath parameter must also be an array of the same length.
Returns: boolean True on success, false on fail.
NOTE: Currently the copy
function DOES NOT create parent folders. The folders must already exist.
Maybe something for a future release.
copyAssoc
The Cully\Ssh\Copier::copyAssoc
function is similar to copy
, except it takes one argument:
- $sourceAndDest (array) (required) An associative array where keys are source file paths, and values are destination file paths.
Returns: boolean True on success, false on fail.
Examples
Setup SSH Connections
NOTE: If you're using RSA for the examples below, and you get an auth error, you might need to run this command:
$ eval `ssh-agent -s` && ssh-add