uploadFile
Transfer a local file to a remote SSH host by specifying the host alias, local file path, and remote destination path.
Instructions
Uploads a local file to an SSH host
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostAlias | Yes | Alias or hostname of the SSH host | |
localPath | Yes | Path to the local file | |
remotePath | Yes | Path on the remote host |
Input Schema (JSON Schema)
{
"properties": {
"hostAlias": {
"description": "Alias or hostname of the SSH host",
"type": "string"
},
"localPath": {
"description": "Path to the local file",
"type": "string"
},
"remotePath": {
"description": "Path on the remote host",
"type": "string"
}
},
"required": [
"hostAlias",
"localPath",
"remotePath"
],
"type": "object"
}