diff --git a/docs/manual/OptionalTasks/scp.html b/docs/manual/OptionalTasks/scp.html index 3b04c6f6c..c65feb6ee 100644 --- a/docs/manual/OptionalTasks/scp.html +++ b/docs/manual/OptionalTasks/scp.html @@ -20,7 +20,7 @@ remote machine.
in the Ant distribution. See Library Dependencies for more information. This task has been tested with jsch-0.1.2 to -jsch-0.1.9. +jsch-0.1.14.The file to copy. This can be a local path or a remote path of the form user[:password]@host:/directory/path. :password can be ommitted if you use key based - authentication or specify the password attribute. | + authentication or specify the password attribute. The way remote + path is recognized is whether it contains @ character or not. This + will not work if your localPath contains @ character.Yes, unless a nested
<fileset> element is used. |
+ |
localFile | +This is an alternative to the file attribute. But + this must always point to a local file. The reason this was added + was that when you give file attribute it is treated as remote if + it contains @ character. This character can exist also in local + paths. since Ant 1.6.2 | +Alternative to file attribute. | +
remoteFile | +This is an alternative to the file attribute. But + this must always point to a remote file. since Ant 1.6.2 | +Alternative to file attribute. | +
todir | The directory to copy to. This can be a local path or a remote path of the form user[:password]@host:/directory/path. :password can be ommitted if you use key based - authentication or specify the password attribute. | + authentication or specify the password attribute. The way remote + path is recognized is whether it contains @ character or not. This + will not work if your localPath contains @ character.Yes |
localTodir | +This is an alternative to the todir + attribute. But this must always point to a local directory. The + reason this was added was that when you give todir attribute it is + treated as remote if it contains @ character. This character can + exist also in local paths. since Ant 1.6.2 | +Alternative to todir attribute. | +
remoteTodir | +This is an alternative to the todir + attribute. But this must always point to a remote directory. + since Ant 1.6.2 | +Alternative to todir attribute. | +
port | The port to connect to on the remote host. | @@ -92,6 +127,13 @@ jsch-0.1.9.Yes, if you are using key based authentication. |
verbose | +Determines whether SCP outputs verbosely to the + user. Currently this means outputting dots/stars showing the + progress of a file transfer. since Ant 1.6.2 | +No; defaults to false. | +